summaryrefslogtreecommitdiff
path: root/program/js/tiny_mce/plugins/spellchecker/classes/PSpell.php
diff options
context:
space:
mode:
Diffstat (limited to 'program/js/tiny_mce/plugins/spellchecker/classes/PSpell.php')
-rwxr-xr-xprogram/js/tiny_mce/plugins/spellchecker/classes/PSpell.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/tiny_mce/plugins/spellchecker/classes/PSpell.php b/program/js/tiny_mce/plugins/spellchecker/classes/PSpell.php
index 45448d070..6aa255cbd 100755
--- a/program/js/tiny_mce/plugins/spellchecker/classes/PSpell.php
+++ b/program/js/tiny_mce/plugins/spellchecker/classes/PSpell.php
@@ -37,7 +37,7 @@ class PSpell extends SpellChecker {
$words = pspell_suggest($this->_getPLink($lang), $word);
for ($i=0; $i<count($words); $i++)
- $words[$i] = utf8_encode($words[$i]);
+ $words[$i] = $words[$i];
return $words;
}