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

(-)a/Koha/Biblio.pm (-1 / +2 lines)
Lines 227-232 sub pickup_locations { Link Here
227
    @pickup_locations =
227
    @pickup_locations =
228
      grep { !$seen{ $_->branchcode }++ } @pickup_locations;
228
      grep { !$seen{ $_->branchcode }++ } @pickup_locations;
229
229
230
    @pickup_locations = sort { uc( $a->branchname) cmp uc( $b->branchname) } @pickup_locations;
231
230
    return \@pickup_locations;
232
    return \@pickup_locations;
231
}
233
}
232
234
233
- 

Return to bug 26925