From bb4c356086300f0d3e04a1d80b41a458c063201d Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Tue, 9 Jun 2015 03:45:25 +0200 Subject: [PATCH] [Signed-off] Bug 13950: Sort Item search home library list by branch name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On the item search form the list of home libraries isn't sorted alphabetically by their descrption. To test: - Staff: Advanced search - item search - Verify pull down for home library is correctly sorted after applying the patch. Signed-off-by: Marc VĂ©ron --- catalogue/itemsearch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalogue/itemsearch.pl b/catalogue/itemsearch.pl index e66aa4f..9c07d48 100755 --- a/catalogue/itemsearch.pl +++ b/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}, -- 1.7.10.4