Index: typo3/sysext/tstemplate_info/class.tx_tstemplateinfo.php =================================================================== --- typo3/sysext/tstemplate_info/class.tx_tstemplateinfo.php (Revision 9305) +++ typo3/sysext/tstemplate_info/class.tx_tstemplateinfo.php (Arbeitskopie) @@ -152,9 +152,12 @@ $tmpl->init(); $tplRow = $tmpl->ext_getFirstTemplate($pageId, $template_uid); // Get the row of the first VISIBLE template of the page. whereclause like the frontend. - $tplRow = $this->processTemplateRowAfterLoading($tplRow); - return (is_array($tplRow) ? true : false); + if(is_array($tplRow)) { + $this->processTemplateRowAfterLoading($tplRow); + return TRUE; } + return FALSE; + } /** * Process template row after loading