diff --git a/admin/templates/default/config.xet b/admin/templates/default/config.xet
index 66ff747b30..bda363f8a3 100644
--- a/admin/templates/default/config.xet
+++ b/admin/templates/default/config.xet
@@ -70,6 +70,7 @@
+
-
+
diff --git a/api/src/Html/CkEditorConfig.php b/api/src/Html/CkEditorConfig.php
index 607fe6e320..3bc8355f90 100644
--- a/api/src/Html/CkEditorConfig.php
+++ b/api/src/Html/CkEditorConfig.php
@@ -319,6 +319,13 @@ class CkEditorConfig
private static function add_spellchecker_options(&$config, &$spellchecker_button, &$scayt_button)
{
//error_log(__METHOD__.__LINE__.' Spellcheck:'.$GLOBALS['egw_info']['server']['enabled_spellcheck']);
+
+ // currently we only support browser native spellchecker, and always disable Scayt
+ $config['disableNativeSpellChecker'] = false;
+ $config['scayt_autoStartup'] = false;
+ $spellchecker_button = $scayt_button = null;
+
+ /*
if (isset($GLOBALS['egw_info']['server']['enabled_spellcheck']) && $GLOBALS['egw_info']['server']['enabled_spellcheck'])
{
// enable browsers native spellchecker as default, if e.g.: aspell fails
@@ -349,6 +356,7 @@ class CkEditorConfig
{
$config['scayt_autoStartup'] = false;
}
+ */
}
/**
diff --git a/setup/templates/default/config.tpl b/setup/templates/default/config.tpl
index c8d73ffba8..12d7fbcb45 100644
--- a/setup/templates/default/config.tpl
+++ b/setup/templates/default/config.tpl
@@ -75,14 +75,14 @@
-
+
-
+
|