Project

General

Profile

Bug #22590 » patch_14309_for_trunk.diff

Administrator Admin, 2010-05-05 10:37

View differences:

typo3/sysext/cms/tslib/index_ts.php (Arbeitskopie)
// ***********
$TYPO3_MISC['microtime_end'] = microtime(true);
$TSFE->setParseTime();
if ($TSFE->isOutputting() && ($TSFE->TYPO3_CONF_VARS['FE']['debug'] || $TSFE->config['config']['debug'])) {
if ($TSFE->isOutputting() && (!empty($TSFE->TYPO3_CONF_VARS['FE']['debug']) || !empty($TSFE->config['config']['debug']))) {
echo '
<!-- Parsetime: '.$TSFE->scriptParseTime.' ms-->';
}
......
// *************
// Debugging Output
// *************
if(is_object($error) && @is_callable(array($error,'debugOutput'))) {
if(isset($error) && is_object($error) && @is_callable(array($error,'debugOutput'))) {
$error->debugOutput();
}
if (TYPO3_DLOG) {
(1-1/2)