Aleksander Machniak
2014-04-25 a54cff4c569f74f7ec1b2ab8379b7ad1820a8af9
Fix error when spell-checking an empty text (#1489831)
5 files modified
11 ■■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
program/js/googiespell.js 1 ●●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_spellcheck_googie.php 4 ●●●● patch | view | raw | blame | history
program/steps/utils/spell.inc 3 ●●●●● patch | view | raw | blame | history
program/steps/utils/spell_html.inc 2 ●●● patch | view | raw | blame | history
CHANGELOG
@@ -25,6 +25,7 @@
- Fix redundant alert message on over-size uploads (#1489817)
- Fix next message display after removing a message (#1489800)
- Fix missing Mail-Followup-To header in sent mail (#1489829)
- Fix error when spell-checking an empty text (#1489831)
RELEASE 1.0.0
-------------
program/js/googiespell.js
@@ -289,6 +289,7 @@
    this.cnt_errors_fixed = 0;
    this.cnt_errors = 0;
    this.setStateChanged('checking_spell');
    this.orginal_text = '';
    if (!no_indicator && this.main_controller)
        this.appendIndicator(this.spell_span);
program/lib/Roundcube/rcube_spellcheck_googie.php
@@ -56,6 +56,10 @@
    {
        $this->content = $text;
        if (empty($text)) {
            return $this->matches = array();
        }
        // spell check uri is configured
        $url = rcube::get_instance()->config->get('spellcheck_uri');
program/steps/utils/spell.inc
@@ -37,6 +37,9 @@
    $spellchecker->add_word($data);
    $result = '<?xml version="1.0" encoding="'.RCUBE_CHARSET.'"?><learnwordresult></learnwordresult>';
}
else if (empty($data)) {
    $result = '<?xml version="1.0" encoding="'.RCUBE_CHARSET.'"?><spellresult charschecked="0"></spellresult>';
}
else {
    $spellchecker->check($data);
    $result = $spellchecker->get_xml();
program/steps/utils/spell_html.inc
@@ -35,7 +35,7 @@
$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);