Bug #17735 ยป 0006613.patch
ChangeLog (Arbeitskopie) | ||
---|---|---|
2007-10-30 Oliver Hader <oh@inpublica.de>
|
||
* (minor) Fixed bug #6613: IRRE/RTE - Creating a new child record fails if record uses htmlArea RTE
|
||
2007-10-30 Benjamin Mack <mack@xnos.org>
|
||
* Moved "doc" module to sysext "opendocs"
|
typo3/sysext/rtehtmlarea/ChangeLog (Arbeitskopie) | ||
---|---|---|
2007-10-30 Oliver Hader <oh@inpublica.de>
|
||
* Fixed bug #6613: IRRE/RTE - Creating a new child record fails if record uses htmlArea RTE
|
||
2007-10-26 Stanislas Rolland <stanislas.rolland@fructifor.ca>
|
||
* Fixed bug 5031: htmlArea RTE incorrectly processes col tags and default proc options disallow col and colgroup tags
|
typo3/sysext/rtehtmlarea/class.tx_rtehtmlarea_base.php (Arbeitskopie) | ||
---|---|---|
|
||
// Merge the list of enabled plugins with the lists from the previous RTE editing areas on the same form
|
||
$this->pluginEnableArrayMultiple[$pObj->RTEcounter] = $this->pluginEnableArray;
|
||
if ($pObj->RTEcounter > 1) $this->pluginEnableArrayMultiple[$pObj->RTEcounter] = array_unique(array_values(array_merge($this->pluginEnableArray,$this->pluginEnableArrayMultiple[$pObj->RTEcounter-1])));
|
||
if ($pObj->RTEcounter > 1 && isset($this->pluginEnableArrayMultiple[$pObj->RTEcounter-1]) && is_array($this->pluginEnableArrayMultiple[$pObj->RTEcounter-1])) {
|
||
$this->pluginEnableArrayMultiple[$pObj->RTEcounter] = array_unique(array_values(array_merge($this->pluginEnableArray,$this->pluginEnableArrayMultiple[$pObj->RTEcounter-1])));
|
||
}
|
||
/* =======================================
|
||
* PLUGIN-SPECIFIC CONFIGURATION
|