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

(-)a/opac/opac-search.pl (-2 / +4 lines)
Lines 216-223 if ($cgi->cookie("search_path_code")) { Link Here
216
    }
216
    }
217
}
217
}
218
218
219
use POSIX qw(locale_h);
220
use locale;
221
setlocale(LC_COLLATE, "fr_CA.UTF-8");
219
my @search_groups = Koha::Library::Groups->get_search_groups( { interface => 'opac' } )->as_list;
222
my @search_groups = Koha::Library::Groups->get_search_groups( { interface => 'opac' } )->as_list;
220
@search_groups = sort { $a->title cmp $b->title } @search_groups;
223
@search_groups = sort { lc($a->title) cmp lc($b->title) } @search_groups;
221
$template->param( search_groups => \@search_groups );
224
$template->param( search_groups => \@search_groups );
222
225
223
# load the language limits (for search)
226
# load the language limits (for search)
224
- 

Return to bug 29922