From 5e89824d3da6b832adbb0719b5683e1e7d96946e Mon Sep 17 00:00:00 2001 From: The Minh Luong Date: Fri, 21 Jan 2022 08:45:23 -0500 Subject: [PATCH] Bug 29922: Group of libraries are now displayed in alphabetical order This patch modifies the OPAC's "Group of libraries" field in Advanced search tab. When the select button under the text "Groups of libraries" is clicked, the library groups are now displayed in alphabetical orders. To test, start by creating multiple libraries (At least 5). Then, create library groups (At least 5) in non-alphabetical order. (Make sure "Use for OPAC search groups" is checked when creating a library group). - Example: CGroup,DGroup,AGroup,EGroup,BGroup (These are the Titles) From there, follow these steps: 1 - Go in OPAC, then Advanced search. 2 - Under "Groups of librairies" , click the select button. 3 - Notice that the library groups are not in alphabetical order. 4 - Apply the patch. 5 - Notice that the library groups are in alphabetical order. https://bugs.koha-community.org/show_bug.cgi?id=29922 --- opac/opac-search.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/opac/opac-search.pl b/opac/opac-search.pl index 8d5fe07bc0..9d62c7282b 100755 --- a/opac/opac-search.pl +++ b/opac/opac-search.pl @@ -217,6 +217,7 @@ if ($cgi->cookie("search_path_code")) { } my @search_groups = Koha::Library::Groups->get_search_groups(); +@search_groups = sort { $a->title cmp $b->title } @search_groups; $template->param( search_groups => \@search_groups ); # load the language limits (for search) -- 2.25.1