diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-05-02 19:11:57 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-05-02 19:11:57 +0200 |
commit | c76e49239241a62117c34a2bb0fbb9632c6750a1 (patch) | |
tree | 9cfe2cdb02fa62bea77b93f49a993b31dd0f3686 /installer | |
parent | 3e49064dcfe10ea03fe8892143aba56b4ce1321f (diff) |
Add all possible options in spellcheck_engine selector
Diffstat (limited to 'installer')
-rw-r--r-- | installer/config.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/installer/config.php b/installer/config.php index 39bf48ea4..806f7c2c1 100644 --- a/installer/config.php +++ b/installer/config.php @@ -153,7 +153,10 @@ echo $check_spell->show(intval($RCI->getprop('enable_spellcheck')), array('value $select_spell = new html_select(array('name' => '_spellcheck_engine', 'id' => "cfgspellcheckengine")); if (extension_loaded('pspell')) $select_spell->add('pspell', 'pspell'); +if (extension_loaded('enchant')) + $select_spell->add('Enchant', 'enchant'); $select_spell->add('Googie', 'googie'); +$select_spell->add('ATD', 'atd'); echo $select_spell->show($RCI->is_post ? $_POST['_spellcheck_engine'] : 'pspell'); |