Bug 5751 : Follow up patch, removing unused variable and fixing copyright
authorChris Cormack <chrisc@catalyst.net.nz>
Sun, 13 Feb 2011 23:15:14 +0000 (12:15 +1300)
committerChris Cormack <chrisc@catalyst.net.nz>
Sun, 13 Feb 2011 23:17:29 +0000 (12:17 +1300)
members/members-home.pl

index 482970c..6cb60fa 100755 (executable)
@@ -1,5 +1,6 @@
 #!/usr/bin/perl
 
+# Parts Copyright Biblibre 2010
 # This file is part of Koha.
 #
 # Koha is free software; you can redistribute it and/or modify it under the
@@ -27,7 +28,6 @@ use C4::Branch;
 use C4::Category;
 
 my $query = new CGI;
-my $quicksearch = $query->param('quicksearch');
 my $branch = $query->param('branchcode');
 my $template_name;
 
@@ -39,7 +39,6 @@ my ($template, $loggedinuser, $cookie)
                  flagsrequired => {borrowers => 1},
                  debug => 1,
                  });
-}
 
 my $branches = GetBranches;
 my @branchloop;
@@ -59,16 +58,21 @@ my $branchloop = (defined $branch?GetBranchesLoop($branch):GetBranchesLoop());
 if(scalar(@$branchloop) < 1){
     $no_add = 1;
     $template->param(no_branches => 1);
-} else {
+} 
+else {
     $template->param(branchloop=>\@$branchloop);
 }
 
 @categories=C4::Category->all;
-if(scalar(@categories) < 1){ $no_categories = 1; }
+if(scalar(@categories) < 1){ 
+    $no_categories = 1; 
+}
+
 if($no_categories && C4::Context->preference("AddPatronLists")=~/code/){
     $no_add = 1;
     $template->param(no_categories => 1);
-} else {
+} 
+else {
     $template->param(categories=>\@categories);
 }