@@ -, +, @@ by branch name - Staff: Advanced search - item search - Verify pull down for home library is correctly sorted after applying the patch. --- catalogue/itemsearch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/catalogue/itemsearch.pl +++ a/catalogue/itemsearch.pl @@ -242,7 +242,7 @@ if ($format eq 'html') { my $branches = GetBranches(); my @branches; - foreach my $branchcode (keys %$branches) { + foreach my $branchcode (sort keys %$branches) { push @branches, { value => $branchcode, label => $branches->{$branchcode}->{branchname}, --