From 899b064b9e5f7c4cc16bc7fccdbe69cac8752d1c 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/ Signed-off-by: Chris Cormack Signed-off-by: Tomas Cohen Arazi Signed-off-by: Katrin Fischer --- 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.39.5