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

(-)a/C4/Circulation.pm (-1 / +1 lines)
Lines 3343-3349 sub AddRenewal { Link Here
3343
3343
3344
    $borrowernumber ||= $issue->borrowernumber;
3344
    $borrowernumber ||= $issue->borrowernumber;
3345
3345
3346
    if ( defined $datedue && ref $datedue ne 'DateTime' ) {
3346
    if ( $datedue && ref $datedue ne 'DateTime' ) {
3347
        $datedue = dt_from_string( $datedue, 'sql' );
3347
        $datedue = dt_from_string( $datedue, 'sql' );
3348
    }
3348
    }
3349
3349
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-2 / +1 lines)
Lines 228-234 Circulation: Link Here
228
              choices:
228
              choices:
229
                  1: Allow
229
                  1: Allow
230
                  0: "Don't allow"
230
                  0: "Don't allow"
231
            - staff to renew items that are on hold by manually specifying a due date.
231
            - staff to renew items that are on hold.
232
        -
232
        -
233
            - pref: AllowItemsOnHoldCheckoutSIP
233
            - pref: AllowItemsOnHoldCheckoutSIP
234
              choices:
234
              choices:
235
- 

Return to bug 37966