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

(-)a/C4/Circulation.pm (-1 / +1 lines)
Lines 3446-3452 sub AddRenewal { Link Here
3446
3446
3447
    $borrowernumber ||= $issue->borrowernumber;
3447
    $borrowernumber ||= $issue->borrowernumber;
3448
3448
3449
    if ( defined $datedue && ref $datedue ne 'DateTime' ) {
3449
    if ( $datedue && ref $datedue ne 'DateTime' ) {
3450
        $datedue = dt_from_string( $datedue, 'sql' );
3450
        $datedue = dt_from_string( $datedue, 'sql' );
3451
    }
3451
    }
3452
3452
(-)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