From c2ee77c1fcda9834c1b4cc57590d76354712db62 Mon Sep 17 00:00:00 2001 From: Hammat Wele Date: Tue, 21 Oct 2025 20:45:58 +0000 Subject: [PATCH] Bug 20956: (follow-up) Tidyness and fix no pod coverage in Koha/Patron.pm Signed-off-by: Hammat Wele --- Koha/Patron.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Koha/Patron.pm b/Koha/Patron.pm index 60242dbbaa3..de6368382df 100644 --- a/Koha/Patron.pm +++ b/Koha/Patron.pm @@ -1119,7 +1119,7 @@ sub set_password { module => 'members', letter_code => 'PASSWORD_CHANGE', branchcode => $self_from_storage->branchcode, - , + lang => $self_from_storage->lang || 'default', tables => { 'branches' => $self_from_storage->branchcode, @@ -3475,9 +3475,9 @@ sub is_anonymous { return ( $anonymous_patron && $self->borrowernumber eq $anonymous_patron ) ? 1 : 0; } -=head3 get_permissions +=head3 permissions -my $flags = $patron->get_permissons +my $flags = $patron->permissions Returns a structure such as: { -- 2.34.1