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

(-)a/members/moremember.pl (-2 / +3 lines)
Lines 242-248 my $overdues_exist = 0; Link Here
242
my $totalprice = 0;
242
my $totalprice = 0;
243
243
244
# Calculate and display patron's age
244
# Calculate and display patron's age
245
$template->param( age => Koha::Patron->new({ dateofbirth => $data->{dateofbirth} })->get_age );
245
if ( $data->{dateofbirth} ) {
246
    $template->param( age => Koha::Patron->new({ dateofbirth => $data->{dateofbirth} })->get_age );
247
}
246
248
247
### ###############################################################################
249
### ###############################################################################
248
# BUILD HTML
250
# BUILD HTML
249
- 

Return to bug 17933