From f1cb2f39bbf92bab94bda5f34a1e5704a492f0ac Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Thu, 3 Jan 2019 20:52:15 +0000 Subject: [PATCH] Bug 22067: Return if no patron passed to can_see_patron_infos To test: 1 - Find an adult patron 2 - Add a child to their account 3 - Delete the parent from the db 4 - Attempt to edit the child record 5 - Apply patch 6 - Repeat 7 - Note you can edit the child account 8 - Note guarantor id is not a link Signed-off-by: Maryse Simard --- Koha/Patron.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Koha/Patron.pm b/Koha/Patron.pm index 5831034..a9c5114 100644 --- a/Koha/Patron.pm +++ b/Koha/Patron.pm @@ -1146,6 +1146,7 @@ Return true if the patron (usually the logged in user) can see the patron's info sub can_see_patron_infos { my ( $self, $patron ) = @_; + return unless $patron; return $self->can_see_patrons_from( $patron->library->branchcode ); } -- 2.7.4