always enable spellchecker, ckeditor now uses spell-as-you-type via a public webservice

This commit is contained in:
Ralf Becker 2010-06-10 05:55:15 +00:00
parent a4d96bd6fa
commit 9c837c57f9

View File

@ -256,6 +256,9 @@ class setup_process
{ {
unset($current_config['aspell_path']); unset($current_config['aspell_path']);
} }
// always enable spellchecker, ckeditor now uses spell-as-you-type via a public webservice
$current_config['enabled_spellcheck'] = 'True';
// RalfBecker: php.net recommend this for security reasons, it should be our default too // RalfBecker: php.net recommend this for security reasons, it should be our default too
$current_config['usecookies'] = 'True'; $current_config['usecookies'] = 'True';