From: Nick Clemens Date: Tue, 26 Jun 2018 15:02:02 +0000 (+0000) Subject: Bug 20998: Only perform quicksearch if patron found with cardnumber X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=fe9f7cef3be1768ec54acd7934b146d5d9d68927;p=koha.git Bug 20998: Only perform quicksearch if patron found with cardnumber This patch makes sure we have a patron before we try to access their branchcode and allows search to work To recreate: 1 - Enable 'IndependentBranches' 2 - Setup a patron with all permissions, but not a superlibrarian 3 - Login to staff client as that patron 4 - Click 'Patrons' in the toolbar and try a search 5 - Internal server error 6 - Apply patch 7 - Try the search again 8 - Success! Signed-off-by: Jonathan Druart Signed-off-by: Owen Leonard Signed-off-by: Tomas Cohen Arazi Signed-off-by: Nick Clemens --- diff --git a/members/member.pl b/members/member.pl index 7dc0b1e3af..2fc7fb462a 100755 --- a/members/member.pl +++ b/members/member.pl @@ -53,7 +53,7 @@ if ( $quicksearch and $searchmember ) { $branchcode = $userenv->{'branch'}; } my $patron = Koha::Patrons->find( { cardnumber => $searchmember } ); - if( ( $branchcode and $patron->branchcode eq $branchcode ) or ( not $branchcode and $patron ) ){ + if( ( $branchcode and $patron and $patron->branchcode eq $branchcode ) or ( not $branchcode and $patron ) ){ print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=" . $patron->borrowernumber); exit; }