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

(-)a/Koha/Patron.pm (-1 / +1 lines)
Lines 1146-1151 Return true if the patron (usually the logged in user) can see the patron's info Link Here
1146
1146
1147
sub can_see_patron_infos {
1147
sub can_see_patron_infos {
1148
    my ( $self, $patron ) = @_;
1148
    my ( $self, $patron ) = @_;
1149
    return unless $patron;
1149
    return $self->can_see_patrons_from( $patron->library->branchcode );
1150
    return $self->can_see_patrons_from( $patron->library->branchcode );
1150
}
1151
}
1151
1152
1152
- 

Return to bug 22067