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

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

Return to bug 18403