From 14e4e1fe83094a14e592e72ca76af7e5a17b9a8f Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Wed, 8 Sep 2021 08:31:47 -0400 Subject: [PATCH] Bug 28973: Improve Koha::Patron::can_see_patron_infos efficiency The method can_see_patron_infos looks up a row in the branches table by branchcode just to get the branchcode it already has. This seems inefficient. Test Plan: 1) Apply this patch 2) No changes should be noted Signed-off-by: Martin Renvoize --- Koha/Patron.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Patron.pm b/Koha/Patron.pm index 6160c440b7..85d9c01bf1 100644 --- a/Koha/Patron.pm +++ b/Koha/Patron.pm @@ -1335,7 +1335,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 ); + return $self->can_see_patrons_from( $patron->branchcode ); } =head3 can_see_patrons_from -- 2.20.1