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

(-)a/installer/data/mysql/updatedatabase.pl (-2 / +1 lines)
Lines 8563-8569 if ( CheckVersion($DBversion) ) { Link Here
8563
$DBversion = "XXX";
8563
$DBversion = "XXX";
8564
if ( CheckVersion($DBversion) ) {
8564
if ( CheckVersion($DBversion) ) {
8565
    $dbh->do(q|
8565
    $dbh->do(q|
8566
        INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES('RentalFeesCheckoutConfirmation', '1', NULL , 'Allow user to confirme when checking out an item with rental fees.', 'YesNo')
8566
        INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES('RentalFeesCheckoutConfirmation', '0', NULL , 'Allow user to confirm when checking out an item with rental fees.', 'YesNo')
8567
    |);
8567
    |);
8568
    print "Upgrade to $DBversion done (Bug 11169 - Add RentalFeesCheckoutConfirmation syspref)\n";
8568
    print "Upgrade to $DBversion done (Bug 11169 - Add RentalFeesCheckoutConfirmation syspref)\n";
8569
    SetVersion($DBversion);
8569
    SetVersion($DBversion);
8570
- 

Return to bug 12448