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

(-)a/Koha/Account.pm (-2 / +1 lines)
Lines 281-287 sub balance { Link Here
281
        }
281
        }
282
    );
282
    );
283
283
284
    my $total = $fines->count
284
    return ( $fines->count )
285
      ? $fines->next->get_column('total_amountoutstanding') + 0
285
      ? $fines->next->get_column('total_amountoutstanding') + 0
286
      : 0;
286
      : 0;
287
}
287
}
288
- 

Return to bug 12001