From 47147494ea8a3a82bac227b1149999e3432810f1 Mon Sep 17 00:00:00 2001 From: Phil Ringnalda Date: Thu, 9 May 2024 16:31:56 -0700 Subject: [PATCH] Bug 36824: Fix conversion of __VERSION__ in system preferences to use main rather than master Test plan: 1. Administration > search system preferences for the words database columns 2. Click the links to schema.koha-community.org, note that they 404 with /master/ in the URL 3. Apply patch, reset_all 4. Search again, click the links, note that they load successfully with /main/ --- admin/preferences.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/preferences.pl b/admin/preferences.pl index 63f495c771..aba2492c35 100755 --- a/admin/preferences.pl +++ b/admin/preferences.pl @@ -238,7 +238,7 @@ sub TransformPrefsToHTML { if ( $minor % 2 ) { $piece =~ s|__VERSION__|${major}_${minor}|g; } else { - $piece =~ s|__VERSION__|master|g; + $piece =~ s|__VERSION__|main|g; } } push @chunks, { type_text => 1, contents => $piece }; -- 2.44.0