Bugzilla – Attachment 187891 Details for
Bug 40245
Support option to display firstname in patron search results when different than preferred_name
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 40245: Add new system preference ShowPatronFirstnameIfDifferentThanPreferredname
Bug-40245-Add-new-system-preference-ShowPatronFirs.patch (text/plain), 4.00 KB, created by
CJ Lynce
on 2025-10-14 15:19:36 UTC
(
hide
)
Description:
Bug 40245: Add new system preference ShowPatronFirstnameIfDifferentThanPreferredname
Filename:
MIME Type:
Creator:
CJ Lynce
Created:
2025-10-14 15:19:36 UTC
Size:
4.00 KB
patch
obsolete
>From da52e9c9033ad6ea6ae9537ddb0da327b9cec277 Mon Sep 17 00:00:00 2001 >From: CJ Lynce <cj.lynce@westlakelibrary.org> >Date: Mon, 13 Oct 2025 21:51:06 +0000 >Subject: [PATCH] Bug 40245: Add new system preference > ShowPatronFirstnameIfDifferentThanPreferredname > >Adds a new system preference ShowPatronFirstnameIfDifferentThanPreferredname > to allow a patron's firstname to be shown in search results when > different than their preferred name. > >Sponsored-by: Westlake Porter Public Library <https://westlakelibrary.org> >--- > .../data/mysql/atomicupdate/bug_40425.pl | 20 +++++++++++++++++++ > installer/data/mysql/mandatory/sysprefs.sql | 1 + > .../en/modules/admin/preferences/patrons.pref | 6 ++++++ > 3 files changed, 27 insertions(+) > create mode 100755 installer/data/mysql/atomicupdate/bug_40425.pl > >diff --git a/installer/data/mysql/atomicupdate/bug_40425.pl b/installer/data/mysql/atomicupdate/bug_40425.pl >new file mode 100755 >index 0000000000..9f2e572a04 >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/bug_40425.pl >@@ -0,0 +1,20 @@ >+use Modern::Perl; >+use Koha::Installer::Output qw(say_warning say_success say_info); >+ >+return { >+ bug_number => "40425", >+ description => "Add a system preference ShowPatronFirstnameIfDifferentThanPreferredname", >+ up => sub { >+ my ($args) = @_; >+ my ( $dbh, $out ) = @$args{qw(dbh out)}; >+ >+ $dbh->do( >+ q{ >+ INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES >+ ('ShowPatronFirstnameIfDifferentThanPreferredname','0',NULL,'If ON, a patrons firstname will also show in search results if different than their preferred name','YesNo') >+ } >+ ); >+ >+ say $out "Added new system preference 'ShowPatronFirstnameIfDifferentThanPreferredname'"; >+ }, >+}; >diff --git a/installer/data/mysql/mandatory/sysprefs.sql b/installer/data/mysql/mandatory/sysprefs.sql >index 0d77d5ba94..561055828b 100644 >--- a/installer/data/mysql/mandatory/sysprefs.sql >+++ b/installer/data/mysql/mandatory/sysprefs.sql >@@ -750,6 +750,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('ShowHeadingUse', '0', NULL, 'Show whether MARC21 authority record contains an established heading that conforms to descriptive cataloguing rules, and can therefore be used as a main/added entry, or subject, or series title', 'YesNo'), > ('showLastPatron','0','','If ON, enables the last patron feature in the intranet','YesNo'), > ('showLastPatronCount', '10', '', 'How many patrons should showLastPatron remember', 'Integer'), >+('ShowPatronFirstnameIfDifferentThanPreferredname','0','','If ON, a patrons firstname will also show in search results if different than their preferred name','YesNo'), > ('ShowPatronImageInWebBasedSelfCheck','0','','If ON, displays patron image when a patron uses web-based self-checkout','YesNo'), > ('ShowReviewer','full','none|full|first|surname|firstandinitial|username','Choose how a commenter\'s identity is presented alongside comments in the OPAC','Choice'), > ('ShowReviewerPhoto','1','','If ON, photo of reviewer will be shown beside comments in OPAC','YesNo'), >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref >index eae4c9723f..d1b5d2fa0f 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref >@@ -138,6 +138,12 @@ Patrons: > class: integer > - days. Leave empty to disable this behavior. > - "<br><strong>NOTE:</strong> This system preference requires the misc/cronjobs/cleanup_database.pl cronjob. Ask your system administrator to schedule it." >+ - >+ - pref: ShowPatronFirstnameIfDifferentThanPreferredname >+ choices: >+ 1: Show >+ 0: "Don't show" >+ - "a patron's firstname in search results if their preferred name is different." > > Membership expiry: > - >-- >2.39.5
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 40245
:
184501
|
184502
|
184637
|
184638
|
184639
|
185601
|
185602
|
185603
|
186732
|
186733
|
187891
|
187892
|
187893
|
187943
|
188112
|
188113
|
188114
|
188811
|
188812
|
188813