Lines 85-91
while ( my $b = $borrowers_rs->next ) {
Link Here
|
85 |
firstname => $b->firstname // '', |
85 |
firstname => $b->firstname // '', |
86 |
cardnumber => $b->cardnumber // '', |
86 |
cardnumber => $b->cardnumber // '', |
87 |
dateofbirth => format_sqldatetime($b->dateofbirth, undef, undef, 1) // '', |
87 |
dateofbirth => format_sqldatetime($b->dateofbirth, undef, undef, 1) // '', |
88 |
age => $b->get_age // 'Age unknown', |
88 |
age => $b->get_age // '', |
89 |
address => $b->address // '', |
89 |
address => $b->address // '', |
90 |
city => $b->city // '', |
90 |
city => $b->city // '', |
91 |
zipcode => $b->zipcode // '', |
91 |
zipcode => $b->zipcode // '', |