X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=members%2Freadingrec.pl;h=015c56c9d1f37a6e47416e57a67f91457832902f;hb=0c45edcebb474009d8da64bd479b0f9de1872e15;hp=295a43cd42e4215642aaccc0aa34a797e2f86915;hpb=0ab22e1c7c6b6e8d14a4fb7478ab2a3d42da347d;p=koha.git diff --git a/members/readingrec.pl b/members/readingrec.pl index 295a43cd42..015c56c9d1 100755 --- a/members/readingrec.pl +++ b/members/readingrec.pl @@ -92,20 +92,16 @@ if ( $op eq 'export_barcodes' ) { } } -my $category = $patron->category; -if ( $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 ( $category->category_type eq 'A' || $category->category_type eq 'I' ); if (! $limit){ $limit = 'full'; } -$template->param( picture => 1 ) if $patron->image; - if (C4::Context->preference('ExtendedPatronAttributes')) { my $attributes = GetBorrowerAttributes($patron->borrowernumber); $template->param( @@ -117,7 +113,6 @@ if (C4::Context->preference('ExtendedPatronAttributes')) { $template->param( patron => $patron, readingrecordview => 1, - is_child => ( $category->category_type eq 'C' ), loop_reading => $issues, ); output_html_with_http_headers $input, $cookie, $template->output;