Index: typo3/sysext/cms/tslib/class.tslib_content.php =================================================================== --- typo3/sysext/cms/tslib/class.tslib_content.php (revision 7676) +++ typo3/sysext/cms/tslib/class.tslib_content.php (working copy) @@ -314,6 +314,7 @@ * @see init() */ var $data = Array(); + protected $table = ''; var $oldData = Array(); // Used for backup... var $alternativeData =''; // If this is set with an array before stdWrap, it's used instead of $this->data in the data-property in stdWrap var $parameters = Array(); // Used by the parseFunc function and is loaded with tag-parameters when parsing tags. @@ -376,6 +377,7 @@ function start($data,$table='') { global $TYPO3_CONF_VARS; $this->data = $data; + $this->table = $table; $this->currentRecord = $table ? $table.':'.$this->data['uid'] : ''; $this->parameters = Array(); if (is_array ($TYPO3_CONF_VARS['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClass'])) {