Feature #23899 ยป debug_control.diff
t3lib/config_default.php (copie de travail) | ||
---|---|---|
$GLOBALS['error']->debugEnd();
|
||
}
|
||
}
|
||
// call of the debug control method of the global error object for debugging
|
||
// Here you can e.g. change the output of the colors or reset the debug output file to zero.
|
||
function debugControl($parameters) {
|
||
if(is_object($GLOBALS['error']) && @is_callable(array($GLOBALS['error'],'debugControl'))) {
|
||
$GLOBALS['error']->debugControl($parameters);
|
||
}
|
||
}
|