Index: t3lib/config_default.php =================================================================== --- t3lib/config_default.php (revision 7843) +++ t3lib/config_default.php (working copy) @@ -498,9 +498,9 @@ 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() {