Index: branches/RC/core/install/upgrades.sql =================================================================== diff -u -N -r10906 -r10908 --- branches/RC/core/install/upgrades.sql (.../upgrades.sql) (revision 10906) +++ branches/RC/core/install/upgrades.sql (.../upgrades.sql) (revision 10908) @@ -349,3 +349,15 @@ ALTER TABLE `Language` ADD `FilenameReplacements` TEXT NULL ; +CREATE TABLE SpellingDictionary ( + SpellingDictionaryId int(11) NOT NULL auto_increment, + MisspelledWord varchar(255) NOT NULL default '', + SuggestedCorrection varchar(255) NOT NULL default '', + PRIMARY KEY (SpellingDictionaryId), + KEY MisspelledWord (MisspelledWord), + KEY SuggestedCorrection (SuggestedCorrection) +); + + +INSERT INTO ConfigurationValues VALUES(NULL, 'YahooApplicationId', '56QxES3V34FXHPPcrPI_6.0mjc6QIG4AnHP0OC2LZEePW0nq_uNG.kVmSKG4llurekJ.OIE-', 'In-Portal', 'in-portal:configure_categories'); +INSERT INTO ConfigurationAdmin VALUES('YahooApplicationId', 'la_Text_General', 'la_config_YahooApplicationId', 'text', NULL, NULL, 10.15, 0, 0); \ No newline at end of file