@@ -, +, @@ library name - If using the default testing data you'll have to go to Administration -> Libraries and edit one or more libraries so that the library name is alphabetically different than the library code. e.g. Centerville -> Zanzibar. - Go the OPAC and click "Create an account" (requires the PatronSelfRegistration system preference). - Under "Home library," the dropdown of libraries should be ordered by library name. --- opac/opac-memberentry.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/opac/opac-memberentry.pl +++ a/opac/opac-memberentry.pl @@ -90,7 +90,7 @@ if ( $action eq 'create' || $action eq 'new' ) { $params = { branchcode => { -in => \@PatronSelfRegistrationLibraryList } } if @PatronSelfRegistrationLibraryList; } -my $libraries = Koha::Libraries->search($params); +my $libraries = Koha::Libraries->search( $params, { order_by => ['branchname'] } ); my ( $min, $max ) = Koha::Policy::Patrons::Cardnumber->get_valid_length(); if ( defined $min ) { --