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

(-)a/installer/data/mysql/atomicupdate/bug_9223-add_suggestionsusevalues_syspref.sql (+1 lines)
Line 0 Link Here
1
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES ('SuggestionsUseValues', 'itemtypes', 'Suggestions can be submitted using the following authorized values:','itemtypes|ccode|loc|none','Choice')
(-)a/installer/data/mysql/updatedatabase.pl (-8 lines)
Lines 10554-10566 if ( CheckVersion($DBversion) ) { Link Here
10554
    SetVersion($DBversion);
10554
    SetVersion($DBversion);
10555
}
10555
}
10556
10556
10557
$DBversion = "3.19.00.XXX";
10558
if ( CheckVersion($DBversion) ) {
10559
   $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES ('SuggestionsUseValues', 'itemtypes', 'Suggestions can be submitted using the following authorized values:','itemtypes|ccode|loc|none','Choice')");
10560
   print "Upgrade to $DBversion done (Bug 9223: Add SuggestionsUseValues syspref)\n";
10561
   SetVersion ($DBversion);
10562
}
10563
10564
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
10557
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
10565
# SEE bug 13068
10558
# SEE bug 13068
10566
# if there is anything in the atomicupdate, read and execute it.
10559
# if there is anything in the atomicupdate, read and execute it.
10567
- 

Return to bug 9223