From 865419e2224bfd654af0a943a43febd4523f8dee Mon Sep 17 00:00:00 2001 From: alec Date: Tue, 6 Sep 2011 13:39:45 +0000 Subject: - Merge devel-spellcheck branch: - Added spellchecker exceptions dictionary (shared or per-user) - Added possibility to ignore words containing caps, numbers, symbols (spellcheck_ignore_* options) git-svn-id: https://svn.roundcube.net/trunk@5181 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/steps/utils/spell_html.inc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'roundcubemail/program/steps/utils/spell_html.inc') diff --git a/roundcubemail/program/steps/utils/spell_html.inc b/roundcubemail/program/steps/utils/spell_html.inc index d69c73f37..2af30ba00 100644 --- a/roundcubemail/program/steps/utils/spell_html.inc +++ b/roundcubemail/program/steps/utils/spell_html.inc @@ -40,6 +40,10 @@ if ($request['method'] == 'checkWords') { else if ($request['method'] == 'getSuggestions') { $result['result'] = $spellchecker->get_suggestions($data); } +else if ($request['method'] == 'learnWord') { + $spellchecker->add_word($data); + $result['result'] = true; +} if ($error = $spellchecker->error()) { echo '{"error":{"errstr":"' . addslashes($error) . '","errfile":"","errline":null,"errcontext":"","level":"FATAL"}}'; -- cgit v1.2.3