* Fixed bug 4183: Incorrect display in htmlArea RTE of utf-8 labels for colors, classes and fonts defined in PageTSConfig
* Re-inserting accidently deleted comments in class.tx_rtehtmlarea_base.php.
+ * Fixed bug 4525: In htmlArea RTE, disabling personal dictionaries in UserTSConfig not honored
2007-10-15 Stanislas Rolland <stanislas.rolland@fructifor.ca>
* Fixed bug 4183: Incorrect display in htmlArea RTE of utf-8 labels for colors, classes and fonts defined in PageTSConfig
* Re-inserting accidently deleted comments in class.tx_rtehtmlarea_base.php.
+ * Fixed bug 4525: In htmlArea RTE, disabling personal dictionaries in UserTSConfig not honored
2007-10-15 Stanislas Rolland <stanislas.rolland@fructifor.ca>
}
// 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'] ? ((isset($BE_USER->userTS['options.']['enablePersonalDicts']) && $BE_USER->userTS['options.']['enablePersonalDicts']) ? true : false) : false;
if (ini_get('safe_mode')) {
$this->spellCheckerPersonalDicts = false;
}