Bug #22846 ยป 14673.diff
t3lib/config_default.php (working copy) | ||
---|---|---|
if(is_object($GLOBALS['error']) && @is_callable(array($GLOBALS['error'],'debug'))) {
|
||
$GLOBALS['error']->debug($variable, $name, $line, $file, $recursiveDepth, $debugLevel);
|
||
} else {
|
||
$br = ($name == '*variable*') ? 0 : $name;
|
||
$group = $line ? $line : NULL;
|
||
t3lib_div::debug($variable, $br, $group);
|
||
$title = ($name === '*variable*') ? '' : $name;
|
||
$group = ($line === '*line*') ? NULL : $line;
|
||
t3lib_div::debug($variable, $title, $group);
|
||
}
|
||
}
|
||
function debugBegin() {
|