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

(-)a/opac/opac-user.pl (-4 / +1 lines)
Lines 143-151 $checkoutsblockedamount ||=0; Link Here
143
if ( C4::Context->preference( 'noissuescharge' ) && $borr->{amountoutstanding} > $checkoutsblockedamount ) {
143
if ( C4::Context->preference( 'noissuescharge' ) && $borr->{amountoutstanding} > $checkoutsblockedamount ) {
144
    $borr->{'flagged'} = 1;
144
    $borr->{'flagged'} = 1;
145
    $canrenew = 0;
145
    $canrenew = 0;
146
    $template->param(
146
    $template->param( checkouts_blocked_amount => $checkoutsblockedamount );
147
        checkouts_blocked_amount => sprintf ( '%.02f', $checkoutsblockedamount ),
148
    );
149
}
147
}
150
148
151
if ( $amountoutstanding < 0 ) {
149
if ( $amountoutstanding < 0 ) {
152
- 

Return to bug 15775