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

(-)a/installer/data/mysql/updatedatabase.pl (-1 / +1 lines)
Lines 8554-8560 if (CheckVersion($DBversion)) { Link Here
8554
$DBversion = "3.15.00.XXX";
8554
$DBversion = "3.15.00.XXX";
8555
if(C4::Context->preference("Version") < TransformToNum($DBversion) ) {
8555
if(C4::Context->preference("Version") < TransformToNum($DBversion) ) {
8556
    $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES ('ExpireReservesOnHolidays', '1', NULL, 'If false, reserves at a library will not be canceled on days the library is not open.', 'YesNo')");
8556
    $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES ('ExpireReservesOnHolidays', '1', NULL, 'If false, reserves at a library will not be canceled on days the library is not open.', 'YesNo')");
8557
    print "Upgrade to $DBversion done (Add syspref ExpireReservesOnHolidays\n";
8557
    print "Upgrade to $DBversion done (Bug 8735 - Expire holds waiting only on days the library is open)\n";
8558
    SetVersion ($DBversion);
8558
    SetVersion ($DBversion);
8559
}
8559
}
8560
8560
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-2 / +1 lines)
Lines 502-508 Circulation: Link Here
502
              choices:
502
              choices:
503
                  yes: Allow
503
                  yes: Allow
504
                  no: "Don't allow"
504
                  no: "Don't allow"
505
            - expired holds to be canceled on days the library is closed..
505
            - expired holds to be canceled on days the library is closed.
506
        -
506
        -
507
            - pref: decreaseLoanHighHolds
507
            - pref: decreaseLoanHighHolds
508
              choices:
508
              choices:
509
- 

Return to bug 8735