diff --git a/program/steps/mail/spell_pspell.inc b/program/steps/mail/spell_pspell.inc index 4a829ac48..8b0b56029 100644 --- a/program/steps/mail/spell_pspell.inc +++ b/program/steps/mail/spell_pspell.inc @@ -37,6 +37,7 @@ $data = file_get_contents('php://input'); $left = strpos($data, ''); $right = strrpos($data, ''); $text = substr($data, $left+6, $right-($left+6)); +$text = html_entity_decode($text, ENT_QUOTES); // tokenize $words = preg_split('/[ !"#$%&()*+\\,-.\/\n:;<=>?@\[\]^_{|}]+/', $text, NULL, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_OFFSET_CAPTURE );