diff options
author | thomascube <thomas@roundcube.net> | 2008-08-15 22:00:33 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-08-15 22:00:33 +0000 |
commit | ded713982e3f2e73b50ba2b5589cdd82cc68b749 (patch) | |
tree | 8041e46c0337776aae5508b42ef7175e728ea591 /program/js/tiny_mce/plugins/spellchecker/config.php | |
parent | 4ca10b8d511d85a4d575af355b0a6739d5a05958 (diff) |
Respect spellcheck_uri in tinyMCE spellchecker (#1484196)
Diffstat (limited to 'program/js/tiny_mce/plugins/spellchecker/config.php')
-rwxr-xr-x | program/js/tiny_mce/plugins/spellchecker/config.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/program/js/tiny_mce/plugins/spellchecker/config.php b/program/js/tiny_mce/plugins/spellchecker/config.php index 827749e48..53e6e469f 100755 --- a/program/js/tiny_mce/plugins/spellchecker/config.php +++ b/program/js/tiny_mce/plugins/spellchecker/config.php @@ -7,6 +7,7 @@ $rcmail_config = new rcube_config();
$config['general.engine'] = $rcmail_config->get('spellcheck_engine') == 'pspell' ? 'PSpell' : 'GoogleSpell';
+ $config['GoogleSpell.rpc_uri'] = $rcmail_config->get('spellcheck_uri');
/** end RoundCube specific code */
|