View | Details | Raw Unified | Return to bug 36376
Collapse All | Expand All

(-)a/circ/circulation.pl (-1 / +3 lines)
Lines 307-313 if ($patron) { Link Here
307
        $template->param( age_high => $patron->category->upperagelimit );
307
        $template->param( age_high => $patron->category->upperagelimit );
308
    }
308
    }
309
309
310
    unless ( Koha::Patron::Categories->search_with_library_limits( { 'me.categorycode' => $patron->categorycode } )->count ) {
310
    unless (
311
        Koha::Patron::Categories->search_with_library_limits( { 'me.categorycode' => $patron->categorycode } )->count )
312
    {
311
        $template->param( limited_category => 1 );
313
        $template->param( limited_category => 1 );
312
    }
314
    }
313
}
315
}
(-)a/members/moremember.pl (-2 / +2 lines)
Lines 133-139 if ( !$patron->is_valid_age ) { Link Here
133
    $template->param( age_high => $patron->category->upperagelimit );
133
    $template->param( age_high => $patron->category->upperagelimit );
134
}
134
}
135
135
136
unless ( Koha::Patron::Categories->search_with_library_limits( { 'me.categorycode' => $patron->categorycode } )->count ) {
136
unless ( Koha::Patron::Categories->search_with_library_limits( { 'me.categorycode' => $patron->categorycode } )->count )
137
{
137
    $template->param( limited_category => 1 );
138
    $template->param( limited_category => 1 );
138
}
139
}
139
140
140
- 

Return to bug 36376