Проблема с поиском по трекеру

sindoyun

Пользователь
{
if (error_reporting())
{
if (DEBUG === true)
{
$err = $this->sql_error();
$msg .= "\n". trim(sprintf('#%06d %s', $err['code'], $err['message']));
}
else
{
$msg .= " [". $this->debug_find_source() ."]";
}

trigger_error($msg, E_USER_ERROR);
}
}

/**
* Find caller source
*/
function debug_find_source ($mode = '')
{
foreach (debug_backtrace() as $trace)
{
if (!empty($trace['file']) && $trace['file'] !== __FILE__)
{
switch ($mode)
{
case 'file': return $trace['file'];
case 'line': return $trace['line'];
default: return hide_bb_path($trace['file']) .'('. $trace['line'] .')';
}
}
}

вроде этот кусок
 
Сверху