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

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

Return to bug 20157