From ff5d9d36981e0fa1194f7f2248ef702fb2289e2b Mon Sep 17 00:00:00 2001 From: Josef Moravec Date: Fri, 16 Feb 2018 10:58:42 +0000 Subject: [PATCH] Bug 18789: (QA follow-up) Update holdshistory.pl, fix is_child, is_adult, patron->image, clear template params Signed-off-by: Josef Moravec --- members/holdshistory.pl | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/members/holdshistory.pl b/members/holdshistory.pl index 06d0d1e..1983a35 100755 --- a/members/holdshistory.pl +++ b/members/holdshistory.pl @@ -74,21 +74,14 @@ if ( $borrowernumber eq C4::Context->preference('AnonymousPatron') ){ } } -if ( $patron->category->category_type eq 'C') { +if ( $patron->is_child) { 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->categorycode ) 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, ); -- 2.1.4