mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
Merge branch 'w52_MDL-30953_m23_pspell' of git://github.com/skodak/moodle
This commit is contained in:
commit
6f68eabb7e
@ -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']
|
||||
);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user