Index: typo3/sysext/cms/tslib/content/class.tslib_content_abstract.php =================================================================== --- typo3/sysext/cms/tslib/content/class.tslib_content_abstract.php (revision 9259) +++ typo3/sysext/cms/tslib/content/class.tslib_content_abstract.php (revision ) @@ -57,6 +57,19 @@ */ public abstract function render($conf = array()); + /** + * Compatibility stdWrap wrapper. + * + * @param string $content The content to manipulate using stdWrap functions. + * @param array $conf stdWrap configuration. + * @deprecated since TYPO3 4.5, this function will be removed in TYPO3 4.7, $this->cObj directly! + */ + public function stdWrap($content = '', $conf = array()) { + t3lib_div::logDeprecatedFunction(); + + return $this->cObj->stdWrap($content, $conf); -} + } +} + ?> \ No newline at end of file