Bugzilla – Attachment 178997 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 userid
Bug-39229-Also-try-to-find-patron-by-userid.patch (text/plain), 868 bytes, created by
David Gustafsson
on 2025-03-05 16:26:55 UTC
(
hide
)
Description:
Bug 39229: Also try to find patron by userid
Filename:
MIME Type:
Creator:
David Gustafsson
Created:
2025-03-05 16:26:55 UTC
Size:
868 bytes
patch
obsolete
>From 35ebff4278ba6c2650bdd760897ae4406294a3c9 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 userid > >--- > members/member.pl | 2 ++ > 1 file changed, 2 insertions(+) > >diff --git a/members/member.pl b/members/member.pl >index 0d60907f542..f93d787ad39 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( { userid => $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