Merge branch 'w52_MDL-30953_m23_pspell' of git://github.com/skodak/moodle

This commit is contained in:
Eloy Lafuente (stronk7) 2012-01-02 20:19:43 +01:00
commit 6f68eabb7e

View File

@ -21,7 +21,7 @@ class PSpell extends SpellChecker {
$outWords = array();
foreach ($words as $word) {
if (!pspell_check($plink, trim($word)))
$outWords[] = utf8_encode($word);
$outWords[] = $word;
}
return $outWords;
@ -37,9 +37,6 @@ class PSpell extends SpellChecker {
function &getSuggestions($lang, $word) {
$words = pspell_suggest($this->_getPLink($lang), $word);
for ($i=0; $i<count($words); $i++)
$words[$i] = utf8_encode($words[$i]);
return $words;
}
@ -56,7 +53,7 @@ class PSpell extends SpellChecker {
$lang,
$this->_config['PSpell.spelling'],
$this->_config['PSpell.jargon'],
$this->_config['PSpell.encoding'],
empty($this->_config['PSpell.encoding']) ? 'utf-8' : $this->_config['PSpell.encoding'],
$this->_config['PSpell.mode']
);