Bug5640: BZ5640 (MT3584): Nimes icon set
[koha_fer] / members / members-home.pl
index e641feb..120e65f 100755 (executable)
@@ -51,13 +51,27 @@ if($quicksearch){
                  debug => 1,
                  });
 }
+
+my $branches = GetBranches;
+my @branchloop;
+foreach (sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} } keys %$branches) {
+  my $selected = 1 if $branches->{$_}->{branchcode} eq $branch;
+  my %row = ( value => $_,
+        selected => $selected,
+        branchname => $branches->{$_}->{branchname},
+      );
+  push @branchloop, \%row;
+}
+
 my @categories=C4::Category->all;
 $template->param(
-    branchloop=>(defined $branch?GetBranchesLoop($branch):GetBranchesLoop()),
-       categoryloop=>\@categories,
+    branchloop=>\@branchloop,
+       categories=>\@categories,
 );
 $template->param( 
         "AddPatronLists_".C4::Context->preference("AddPatronLists")=> "1",
             );
+my @letters = map { {letter => $_} } ( 'A' .. 'Z');
+$template->param( letters => \@letters );
 
 output_html_with_http_headers $query, $cookie, $template->output;