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 11237-11249 if ( CheckVersion($DBversion) ) { Link Here
11237
    SetVersion($DBversion);
11237
    SetVersion($DBversion);
11238
}
11238
}
11239
11239
11240
$DBversion = "3.19.00.XXX";
11241
if ( CheckVersion($DBversion) ) {
11242
   $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')");
11243
   print "Upgrade to $DBversion done (Bug 9223: Add SuggestionsUseValues syspref)\n";
11244
   SetVersion ($DBversion);
11245
}
11246
11247
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
11240
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
11248
# SEE bug 13068
11241
# SEE bug 13068
11249
# if there is anything in the atomicupdate, read and execute it.
11242
# if there is anything in the atomicupdate, read and execute it.
11250
- 

Return to bug 9223