Bugzilla – Attachment 179563 Details for
Bug 39283
Middle name doesn't display in patron search results
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39283: Concat middle name with preffered name if it exists
Bug-39283-Concat-middle-name-with-preffered-name-i.patch (text/plain), 1.71 KB, created by
Emily Lamancusa (emlam)
on 2025-03-20 18:04:38 UTC
(
hide
)
Description:
Bug 39283: Concat middle name with preffered name if it exists
Filename:
MIME Type:
Creator:
Emily Lamancusa (emlam)
Created:
2025-03-20 18:04:38 UTC
Size:
1.71 KB
patch
obsolete
>From 824f1c3d99881de9a30b24cd0a210c55c0eb0b23 Mon Sep 17 00:00:00 2001 >From: Lucas Gass <lucas@bywatersolutions.com> >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 <bibliotheque@ifao.egnet.net> >Signed-off-by: Emily Lamancusa <emily.lamancusa@montgomerycountymd.gov> >--- > 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
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 39283
:
179174
|
179469
| 179563