diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-02-25 11:10:22 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-02-25 11:10:22 +0100 |
commit | 36391cf3424b178067bed5153df915b3b3c872ac (patch) | |
tree | cddd1c174eefb44bd81df7959d3b85127a526b35 /program/lib | |
parent | ffc2d09cb4b739e77579cc172adcf859df12f4ab (diff) |
Fix plain text spellchecker icorrect highlighting in non-ASCII text (#1488973)
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/Roundcube/rcube_spellchecker.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_spellchecker.php b/program/lib/Roundcube/rcube_spellchecker.php index 3d4d3a3d6..816bcad2f 100644 --- a/program/lib/Roundcube/rcube_spellchecker.php +++ b/program/lib/Roundcube/rcube_spellchecker.php @@ -31,7 +31,7 @@ class rcube_spellchecker private $lang; private $rc; private $error; - private $separator = '/[\s\r\n\t\(\)\/\[\]{}<>\\"]+|[:;?!,\.]([^\w]|$)/'; + private $separator = '/[\s\r\n\t\(\)\/\[\]{}<>\\"]+|[:;?!,\.](?=\W|$)/'; private $options = array(); private $dict; private $have_dict; |