From cb37a74fe5ea30fea0eb3cfd35cd09f2ddc6039d Mon Sep 17 00:00:00 2001 From: Andrew Fuerste Henry Date: Mon, 2 Feb 2026 14:02:00 +0000 Subject: [PATCH] Bug 41752: label concactfirstname and contactname as Guarantor first name and Guarantor surname MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This change impacts the display of patron fields listed in system preferences: BorrowerMandatoryField BorrowerUnwantedField PatronSelfModificationBorrowerUnwantedField PatronSelfRegistrationBorrowerMandatoryField PatronSelfRegistrationBorrowerUnwantedField To test: 1 - confirm that the sysprefs listed above include "Alternate contact: First name (contactfirstname)" and "Alternate contact: Surname (contactname)" 2 - confirm that toggling the display of these fields hides/shows the Guarantor first name and Guarantor surname fields in a patron record 3 - apply patch, restart_all 4 - confirm that sysprefs now show "Guarantor first name (contactfirstname)" and "Guarnator surname (contactname)" 5 - confirm toggling the display of these fields still hides/shows the correct fields in a patron record in the staff client, in self-ref, and in OPAC self-modification Signed-off-by: Anneli Österman --- Koha/Database/Columns.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Koha/Database/Columns.pm b/Koha/Database/Columns.pm index 284ced531f..13a232859c 100644 --- a/Koha/Database/Columns.pm +++ b/Koha/Database/Columns.pm @@ -152,8 +152,8 @@ sub columns { "categorycode" => __("Patron category"), "checkprevcheckout" => __("Check for previous checkouts"), "city" => __("City"), - "contactfirstname" => __("Alternate contact: First name"), - "contactname" => __("Alternate contact: Surname"), + "contactfirstname" => __("Guarantor first name"), + "contactname" => __("Guarantor surname"), "contactnote" => __("Alternate contact: Note"), "contacttitle" => __("Alternate contact: Title"), "country" => __("Country"), -- 2.39.5