diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-10-19 07:27:16 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-10-19 07:27:16 +0000 |
| commit | 86b3d06c28e1391995d975968ef0c25618eebc26 (patch) | |
| tree | 139f1fff0f030b44814638cff17c7fdbfd6a5b25 /roundcubemail/program/steps | |
| parent | c79a82135a4733ca6f352ecf07d77202dc9d831c (diff) | |
- pspell checker: split text by [dot]+[non-word] instead of [dot] and don't check numeric strings
git-svn-id: https://svn.roundcube.net/trunk@3047 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps')
| -rw-r--r-- | roundcubemail/program/steps/mail/spell_pspell.inc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/roundcubemail/program/steps/mail/spell_pspell.inc b/roundcubemail/program/steps/mail/spell_pspell.inc index 717b92ee5..0abdc9ea1 100644 --- a/roundcubemail/program/steps/mail/spell_pspell.inc +++ b/roundcubemail/program/steps/mail/spell_pspell.inc @@ -43,7 +43,7 @@ $text = substr($data, $left+6, $right-($left+6)); $text = html_entity_decode($text, ENT_QUOTES, RCMAIL_CHARSET); // tokenize -$words = preg_split('/[ !"#$%&()*+\\,-.\/\n:;<=>?@\[\]^_{|}]+/', $text, NULL, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_OFFSET_CAPTURE ); +$words = preg_split('/[ !"#$%&()*+\\,\/\n:;<=>?@\[\]^_{|}-]+|\.[^\w]/', $text, NULL, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_OFFSET_CAPTURE ); // init spellchecker $plink = pspell_new(get_input_value('lang', RCUBE_INPUT_GET), null, null, RCMAIL_CHARSET, PSPELL_FAST); @@ -56,7 +56,8 @@ foreach ($words as $w) { $word = trim($w[0]); $pos = $w[1] - $diff; $len = mb_strlen($word); - if ($word && $plink && !pspell_check($plink, $word)) { + if ($word && $plink && preg_match('/[^0-9\.]/', $word) + && !pspell_check($plink, $word)) { $suggestions = pspell_suggest($plink, $word); if (sizeof($suggestions)>10) $suggestions = array_slice($suggestions, 0, MAX_SUGGESTIONS); |
