Bug 19258: Prevent warns when writing off an individual fine
[koha.git] / reports / issues_by_borrower_category.plugin
index 060d345..1c2d1d1 100755 (executable)
@@ -27,8 +27,6 @@ use C4::Output;
 use C4::Koha;
 use C4::Members;
 
-use C4::Branch; # GetBranches
-
 use Koha::Patron::Categories;
 
 =head1 NAME
@@ -66,8 +64,6 @@ the hashes are then translated to hash / arrays to be returned to manager.pl & s
 sub set_parameters {
     my ($template) = @_;
 
-    $template->param( branchloop => GetBranchesLoop() );
-
     my $patron_categories = Koha::Patron::Categories->search_limited({}, {order_by => ['categorycode']});
     $template->param( patron_categories => $patron_categories );
     return $template;