ffzg/recall_notices.pl: added --interval and --dedup
[koha.git] / members / holdshistory.pl
old mode 100644 (file)
new mode 100755 (executable)
index 9d6f7a4..c17535b
@@ -74,21 +74,8 @@ if ( $borrowernumber eq C4::Context->preference('AnonymousPatron') ){
     }
 }
 
-if ( $patron->category->category_type eq 'C') {
-    my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']});
-    $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
-    $template->param( 'catcode' => $patron_categories->next )  if $patron_categories->count == 1;
-}
-
-$template->param( adultborrower => 1 ) if ( $patron->category->category_type eq 'A' || $patron->category->category_type eq 'I' );
-
-$template->param( picture => 1 ) if $patron->image;
-
-$template->param(%{ $patron->unblessed });
-
 $template->param(
     holdshistoryview => 1,
-    borrowernumber   => $borrowernumber,
     patron           => $patron,
     holds            => \@all_holds,
 );