Bugzilla – Attachment 178973 Details for
Bug 39229
Search additional unique patron properties on patron quicksearch
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39229: Also try to find patron by borrowernumber
Bug-39229-Also-try-to-find-patron-by-borrowernumbe.patch (text/plain), 884 bytes, created by
David Gustafsson
on 2025-03-05 14:38:14 UTC
(
hide
)
Description:
Bug 39229: Also try to find patron by borrowernumber
Filename:
MIME Type:
Creator:
David Gustafsson
Created:
2025-03-05 14:38:14 UTC
Size:
884 bytes
patch
obsolete
>From 258426406b74bd5b76750e931580291f75fb2ab7 Mon Sep 17 00:00:00 2001 >From: David Gustafsson <david.gustafsson@ub.gu.se> >Date: Wed, 5 Mar 2025 15:34:08 +0100 >Subject: [PATCH] Bug 39229: Also try to find patron by borrowernumber > >--- > members/member.pl | 2 ++ > 1 file changed, 2 insertions(+) > >diff --git a/members/member.pl b/members/member.pl >index 4cc58340505..ebf4a78e70d 100755 >--- a/members/member.pl >+++ b/members/member.pl >@@ -68,6 +68,8 @@ if ( $quicksearch and $searchmember && !$circsearch ) { > my $patron = Koha::Patrons->find( { cardnumber => $searchmember } ); > $maybe_redirect->($patron) if ($patron); > >+ $patron = Koha::Patrons->find( { borrowernumber => $searchmember } ); >+ $maybe_redirect->($patron) if ($patron); > > if ( C4::Context->preference('UniqueExtendedAttributesQuickSearch') ) { > # Search all unique patron attributes >-- >2.48.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 39229
:
178892
|
178932
|
178970
|
178971
|
178972
|
178973
|
178974
|
178975
|
178995
|
178996
|
178997
|
180780