Bug #16722 » class.tx_rtehtmlarea_base.php.diff
class.tx_rtehtmlarea_base.php (Arbeitskopie) | ||
---|---|---|
}
|
||
|
||
// Set the use of personal dictionary
|
||
$this->spellCheckerPersonalDicts = $this->thisConfig['enablePersonalDicts'] ? (isset($BE_USER->userTS['options.']['enablePersonalDicts']) ? true : false) : false;
|
||
$this->spellCheckerPersonalDicts = $this->thisConfig['enablePersonalDicts'] ? (intval($BE_USER->userTS['options.']['enablePersonalDicts']) ? true : false) : false;
|
||
if (ini_get('safe_mode')) {
|
||
$this->spellCheckerPersonalDicts = false;
|
||
}
|