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

(-)a/installer/data/mysql/updatedatabase.pl (-1 / +1 lines)
Lines 8592-8598 if ( CheckVersion($DBversion) ) { Link Here
8592
$DBversion = "3.17.00.XXX";
8592
$DBversion = "3.17.00.XXX";
8593
if(C4::Context->preference("Version") < TransformToNum($DBversion) ) {
8593
if(C4::Context->preference("Version") < TransformToNum($DBversion) ) {
8594
    $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')");
8594
    $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')");
8595
    print "Upgrade to $DBversion done (Add syspref ExpireReservesOnHolidays\n";
8595
    print "Upgrade to $DBversion done (Bug 8735 - Expire holds waiting only on days the library is open)\n";
8596
    SetVersion ($DBversion);
8596
    SetVersion ($DBversion);
8597
}
8597
}
8598
8598
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-2 / +1 lines)
Lines 496-502 Circulation: Link Here
496
              choices:
496
              choices:
497
                  yes: Allow
497
                  yes: Allow
498
                  no: "Don't allow"
498
                  no: "Don't allow"
499
            - expired holds to be canceled on days the library is closed..
499
            - expired holds to be canceled on days the library is closed.
500
        -
500
        -
501
            - pref: decreaseLoanHighHolds
501
            - pref: decreaseLoanHighHolds
502
              choices:
502
              choices:
503
- 

Return to bug 8735