diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-02-18 07:12:04 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-02-18 07:12:04 +0000 |
| commit | a4a15d8311a72c7aab2b79ef666ec66f5181c74b (patch) | |
| tree | 13c66ae5ba638403b71cd363e512c78a22d7afcd | |
| parent | 4be818313c627c75b9ae26bdcf3eb0c36465f67c (diff) | |
- use RCMAIL_CHARSET const
git-svn-id: https://svn.roundcube.net/trunk@2299 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/steps/mail/spell_pspell.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/steps/mail/spell_pspell.inc b/roundcubemail/program/steps/mail/spell_pspell.inc index 8b0b56029..102ef5a14 100644 --- a/roundcubemail/program/steps/mail/spell_pspell.inc +++ b/roundcubemail/program/steps/mail/spell_pspell.inc @@ -37,13 +37,13 @@ $data = file_get_contents('php://input'); $left = strpos($data, '<text>'); $right = strrpos($data, '</text>'); $text = substr($data, $left+6, $right-($left+6)); -$text = html_entity_decode($text, ENT_QUOTES); +$text = html_entity_decode($text, ENT_QUOTES, RCMAIL_CHARSET); // tokenize $words = preg_split('/[ !"#$%&()*+\\,-.\/\n:;<=>?@\[\]^_{|}]+/', $text, NULL, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_OFFSET_CAPTURE ); // init spellchecker -$plink = pspell_new(get_input_value('lang', RCUBE_INPUT_GET), null, null, 'utf-8', PSPELL_FAST); +$plink = pspell_new(get_input_value('lang', RCUBE_INPUT_GET), null, null, RCMAIL_CHARSET, PSPELL_FAST); // send output $out = '<?xml version="1.0" encoding="UTF-8"?><spellresult charschecked="'.rc_strlen($text).'">'; |
