+2008-12-18 Stanislas Rolland <typo3@sjbr.ca>
+
+ * Fixed bug #9772: t3lib_parsehtml_proc does not provide Page TSConfig to user-defined RTE transformations
+
2008-12-18 Steffen Kamper <info@sk-typo3.de>
* Fixed bug #7265: Submodules of Web module can't work with mod.php and the _DISPATCH system
var $elRef = ''; // Element reference [table]:[field], eg. "tt_content:bodytext"
var $relPath=''; // Relative path
var $relBackPath=''; // Relative back-path
+ public $tsConfig = array(); // Current Page TSConfig
var $procOptions = ''; // Set to the TSconfig options coming from Page TSconfig
// Internal, dynamic
function RTE_transform($value,$specConf,$direction='rte',$thisConfig=array()) {
// Init:
+ $this->tsConfig = $thisConfig;
$this->procOptions = $thisConfig['proc.'];
$this->preserveTags = strtoupper(implode(',',t3lib_div::trimExplode(',',$this->procOptions['preserveTags'])));