View | Details | Raw Unified | Return to bug 22067
Collapse All | Expand All

(-)a/Koha/Patron.pm (-1 / +1 lines)
Lines 1092-1097 Return true if the patron (usually the logged in user) can see the patron's info Link Here
1092
1092
1093
sub can_see_patron_infos {
1093
sub can_see_patron_infos {
1094
    my ( $self, $patron ) = @_;
1094
    my ( $self, $patron ) = @_;
1095
    return unless $patron;
1095
    return $self->can_see_patrons_from( $patron->library->branchcode );
1096
    return $self->can_see_patrons_from( $patron->library->branchcode );
1096
}
1097
}
1097
1098
1098
- 

Return to bug 22067