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

(-)a/opac/opac-memberentry.pl (-2 / +1 lines)
Lines 90-96 if ( $action eq 'create' || $action eq 'new' ) { Link Here
90
    $params = { branchcode => { -in => \@PatronSelfRegistrationLibraryList } }
90
    $params = { branchcode => { -in => \@PatronSelfRegistrationLibraryList } }
91
      if @PatronSelfRegistrationLibraryList;
91
      if @PatronSelfRegistrationLibraryList;
92
}
92
}
93
my $libraries = Koha::Libraries->search($params);
93
my $libraries = Koha::Libraries->search( $params, { order_by => ['branchname'] } );
94
94
95
my ( $min, $max ) = Koha::Policy::Patrons::Cardnumber->get_valid_length();
95
my ( $min, $max ) = Koha::Policy::Patrons::Cardnumber->get_valid_length();
96
if ( defined $min ) {
96
if ( defined $min ) {
97
- 

Return to bug 35538