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 10814-10826 if ( CheckVersion($DBversion) ) { Link Here
10814
    SetVersion($DBversion);
10814
    SetVersion($DBversion);
10815
}
10815
}
10816
10816
10817
$DBversion = "3.19.00.XXX";
10818
if ( CheckVersion($DBversion) ) {
10819
   $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')");
10820
   print "Upgrade to $DBversion done (Bug 9223: Add SuggestionsUseValues syspref)\n";
10821
   SetVersion ($DBversion);
10822
}
10823
10824
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
10817
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
10825
# SEE bug 13068
10818
# SEE bug 13068
10826
# if there is anything in the atomicupdate, read and execute it.
10819
# if there is anything in the atomicupdate, read and execute it.
10827
- 

Return to bug 9223