Index: typo3/sysext/cms/tslib/content/class.tslib_content_abstract.php =================================================================== --- typo3/sysext/cms/tslib/content/class.tslib_content_abstract.php (revision 9497) +++ typo3/sysext/cms/tslib/content/class.tslib_content_abstract.php (working copy) @@ -57,6 +57,16 @@ */ public abstract function render($conf = array()); + /** + * Compatibility stdWrap wrapper. + * + * @param string $content The content to manipulate using stdWrap functions. + * @param array $conf stdWrap configuration. + */ + public function stdWrap($content = '', $conf = array()) { + return $this->cObj->stdWrap($content, $conf); + } + } ?> \ No newline at end of file