diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-10-20 12:22:00 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-10-20 12:22:00 +0200 |
commit | 0768134de16b1c75a1908da09f58cd627f2330b0 (patch) | |
tree | 387f2b6dfd01edb30315d1989de6f814092e8b6a | |
parent | 5b3a0a2797c8939b397f37dbb9cbf05a50622895 (diff) |
Fix bug where wrong words were highlighted on spell-before-send check
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | program/steps/mail/sendmail.inc | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -1,6 +1,7 @@ CHANGELOG Roundcube Webmail =========================== +- Fix bug where wrong words were highlighted on spell-before-send check - Fix handling of URLs with asterisk characters (#1488759) - Remove automatic to-lowercase conversion of usernames (#1488715) - Fix scrolling quirk in email preview frame using Opera 12 (#1488763) diff --git a/program/steps/mail/sendmail.inc b/program/steps/mail/sendmail.inc index a0c049682..70a6feb96 100644 --- a/program/steps/mail/sendmail.inc +++ b/program/steps/mail/sendmail.inc @@ -468,6 +468,7 @@ if (!$savedraft) { if ($CONFIG['spellcheck_before_send'] && $CONFIG['enable_spellcheck'] && empty($COMPOSE['spell_checked']) && !empty($message_body) ) { + $message_body = str_replace("\r\n", "\n", $message_body); $spellchecker = new rcube_spellchecker(get_input_value('_lang', RCUBE_INPUT_GPC)); $spell_result = $spellchecker->check($message_body, $isHtml); |