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

(-)a/Koha/Patron.pm (-2 / +2 lines)
Lines 795-801 sub libraries_where_can_see_patrons { Link Here
795
795
796
    @restricted_branchcodes = grep { defined $_ } @restricted_branchcodes;
796
    @restricted_branchcodes = grep { defined $_ } @restricted_branchcodes;
797
    @restricted_branchcodes = uniq(@restricted_branchcodes);
797
    @restricted_branchcodes = uniq(@restricted_branchcodes);
798
    return sort (@restricted_branchcodes);
798
    @restricted_branchcodes = sort(@restricted_branchcodes);
799
    return @restricted_branchcodes;
799
}
800
}
800
801
801
sub has_permission {
802
sub has_permission {
802
- 

Return to bug 18403