From 824f1c3d99881de9a30b24cd0a210c55c0eb0b23 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Tue, 11 Mar 2025 16:57:47 +0000 Subject: [PATCH] Bug 39283: Concat middle name with preffered name if it exists MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. Have a patron with a middle name 2. Do a patron search that brings them up, no middle name appears 3. APPLY PATCH 4. Try again, middle name should appear in patron searches. QA follow-up: made the same fix inline for other_name Signed-off-by: Bibliothèque Ifao Signed-off-by: Emily Lamancusa --- koha-tmpl/intranet-tmpl/prog/en/includes/js-patron-format.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/js-patron-format.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/js-patron-format.inc index ba0197ebaae..682d109b46f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/js-patron-format.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/js-patron-format.inc @@ -25,10 +25,12 @@ if (patron.middle_name != null && patron.middle_name != "") { firstname += " " + escape_str(patron.middle_name); + preferred_name += " " + escape_str(patron.middle_name); } if (patron.other_name != null && patron.other_name != "") { firstname += " (" + escape_str(patron.other_name) + ")"; + preferred_name += " (" + escape_str(patron.other_name) + ")"; } if (config && config.invert_name) { name = surname + (preferred_name ? ", " + preferred_name : ""); -- 2.34.1