@@ -, +, @@ placing hold --- Koha/Biblio.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Koha/Biblio.pm +++ a/Koha/Biblio.pm @@ -226,7 +226,7 @@ sub pickup_locations { } return Koha::Libraries->search( - { branchcode => { '-in' => \@pickup_locations } } ); + { branchcode => { '-in' => \@pickup_locations } }, { order_by => ['branchname'] } ); } =head3 hidden_in_opac --