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

(-)a/installer/data/mysql/updatedatabase.pl (-8 / +5 lines)
Lines 7019-7031 if(CheckVersion($DBversion)) { Link Here
7019
7019
7020
$DBversion = "3.13.00.006";
7020
$DBversion = "3.13.00.006";
7021
if ( CheckVersion($DBversion) ) {
7021
if ( CheckVersion($DBversion) ) {
7022
    $dbh->do(
7022
    $dbh->do(q{
7023
        q{
7023
        INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type)
7024
INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES ('CalculateFinesOnReturn','1','Switch to control if overdue fines are calculated on return or not', '', 'YesNo');
7024
        VALUES ('CalculateFinesOnReturn','1','Switch to control if overdue fines are calculated on return or not', '', 'YesNo')
7025
}
7025
    });
7026
    );
7026
    print "Upgrade to $DBversion done (Bug 10120: Fines on item return controlled by a systempreference)\n";
7027
    print
7028
"Upgrade to $DBversion done (Bug 10120 - Fines on item return controlled by a systempreference)\n";
7029
    SetVersion($DBversion);
7027
    SetVersion($DBversion);
7030
}
7028
}
7031
7029
7032
- 

Return to bug 10120