summaryrefslogtreecommitdiff
path: root/program/steps/utils/spell_html.inc
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-04-25 09:55:00 +0200
committerAleksander Machniak <alec@alec.pl>2014-04-25 09:56:22 +0200
commit7fface125e7db1e7ab47bdfbda5306fa16ea2486 (patch)
treec7d6e5b2c7eb301617c26e9e304481c606b77cf1 /program/steps/utils/spell_html.inc
parent115ba30dcd5efce3cd2647847bcc52d5324fcead (diff)
Fix error when spell-checking an empty text (#1489831)
Diffstat (limited to 'program/steps/utils/spell_html.inc')
-rw-r--r--program/steps/utils/spell_html.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/utils/spell_html.inc b/program/steps/utils/spell_html.inc
index 27b14acef..5935dc13f 100644
--- a/program/steps/utils/spell_html.inc
+++ b/program/steps/utils/spell_html.inc
@@ -35,7 +35,7 @@ $result['id'] = $request['id'];
$spellchecker = new rcube_spellchecker($lang);
if ($request['method'] == 'checkWords') {
- $result['result'] = $spellchecker->get_words($data);
+ $result['result'] = empty($data) ? array() : $spellchecker->get_words($data);
}
else if ($request['method'] == 'getSuggestions') {
$result['result'] = $spellchecker->get_suggestions($data);