@@ -, +, @@ --- circ/returns.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- a/circ/returns.pl +++ a/circ/returns.pl @@ -243,7 +243,7 @@ if ($barcode) { push( @inputloop, \%input ); my ( $od, $issue, $fines ) = GetMemberIssuesAndFines( $borrower->{'borrowernumber'} ); - if ($fines) { + if ($fines > 0) { $template->param( fines => sprintf("%.2f",$fines) ); $template->param( fineborrowernumber => $borrower->{'borrowernumber'} ); } --