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

(-)a/C4/Circulation.pm (-1 / +1 lines)
Lines 3243-3249 sub AddRenewal { Link Here
3243
3243
3244
    $borrowernumber ||= $issue->borrowernumber;
3244
    $borrowernumber ||= $issue->borrowernumber;
3245
3245
3246
    if ( defined $datedue && ref $datedue ne 'DateTime' ) {
3246
    if ( $datedue && ref $datedue ne 'DateTime' ) {
3247
        $datedue = dt_from_string($datedue, 'sql');
3247
        $datedue = dt_from_string($datedue, 'sql');
3248
    }
3248
    }
3249
3249
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-2 / +1 lines)
Lines 217-223 Circulation: Link Here
217
              choices:
217
              choices:
218
                  1: Allow
218
                  1: Allow
219
                  0: "Don't allow"
219
                  0: "Don't allow"
220
            - staff to renew items that are on hold by manually specifying a due date.
220
            - staff to renew items that are on hold.
221
        -
221
        -
222
            - pref: AllowItemsOnHoldCheckoutSIP
222
            - pref: AllowItemsOnHoldCheckoutSIP
223
              choices:
223
              choices:
224
- 

Return to bug 37966