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

(-)a/opac/opac-user.pl (-2 / +3 lines)
Lines 293-299 foreach my $res (@reserves) { Link Here
293
    if ($show_priority) {
293
    if ($show_priority) {
294
        $res->{'priority'} ||= '';
294
        $res->{'priority'} ||= '';
295
    }
295
    }
296
    $res->{'suspend_until'} = C4::Dates->new( $res->{'suspend_until'}, "iso")->output("syspref") if ( $res->{'suspend_until'} );
296
    if ( $res->{'suspend_until'} ) {
297
        $res->{'suspend_until'} = output_pref({ dt => dt_from_string( $res->{'suspend_until'} , 'iso' ), dateonly => 1 });
298
    }
297
}
299
}
298
300
299
# use Data::Dumper;
301
# use Data::Dumper;
300
- 

Return to bug 13813