Bug #25060 ยป debug-triggers-quirks-mode.diff
typo3/sysext/cms/tslib/index_ts.php (Arbeitskopie) | ||
---|---|---|
$TSFE->storeSessionData();
|
||
// ***********
|
||
// Statistics
|
||
// ***********
|
||
$TYPO3_MISC['microtime_end'] = microtime(true);
|
||
$TSFE->setParseTime();
|
||
if ($TSFE->isOutputting() && (!empty($TSFE->TYPO3_CONF_VARS['FE']['debug']) || !empty($TSFE->config['config']['debug']))) {
|
||
$TSFE->content .= LF . '<!-- Parsetime: ' . $TSFE->scriptParseTime . 'ms -->';
|
||
}
|
||
$TSFE->statistics();
|
||
// ***************
|
||
// Check JumpUrl
|
||
// ***************
|
||
... | ... | |
echo $TSFE->content;
|
||
}
|
||
// ***********
|
||
// Statistics
|
||
// ***********
|
||
$TYPO3_MISC['microtime_end'] = microtime(true);
|
||
$TSFE->setParseTime();
|
||
if ($TSFE->isOutputting() && (!empty($TSFE->TYPO3_CONF_VARS['FE']['debug']) || !empty($TSFE->config['config']['debug']))) {
|
||
$TSFE->content .= LF . '<!-- Parsetime: ' . $TSFE->scriptParseTime . 'ms -->';
|
||
}
|
||
$TSFE->statistics();
|
||
// *************
|
||
// Debugging Output
|
||
// *************
|
||
... | ... | |
t3lib_div::devLog('END of FRONTEND session', 'cms', 0, array('_FLUSH' => TRUE));
|
||
}
|
||
?>
|
||
?>
|