Wer mit dem Update auf Typo3 4.7.x eine weiße Seite durch mit folgenden Fehler bekommt:

<!--?php
 Fatal error: Call to undefined method tslib_content_PhpScript::stdWrap() in /html/typo3/typo3conf/ext/metatags/meta.php on line 45
?-->

Muss sich nur kurz Zeit nehmen und nicht direkt in Panik geraten 😉

Download

Lösung:

<!--?php
 // function: $this--->stdWrap();
// replace with new function since 4.7: $this-&gt;cObj-&gt;stdWrap();

// Line: 45 &amp; 46
// directory: /typo3conf/ext/metatags/meta.php
// Old:
$localDescription = trim($this-&gt;stdWrap($local['description'],$local['description.']));
$localKeywords = trim($this-&gt;stdWrap($local['keywords'],$local['keywords.']));

// New:
$localDescription = trim($this-&gt;cObj-&gt;stdWrap($local['description'],$local['description.']));
$localKeywords = trim($this-&gt;cObj-&gt;stdWrap($local['keywords'],$local['keywords.']));
?&gt;

Viel Spaß 😉