Bug #22590 » patch_14309_2_for_trunk.diff
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) {
|
- « Previous
- 1
- 2
- Next »