diff options
-rw-r--r-- | includes/common.inc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/includes/common.inc b/includes/common.inc index 9a55b0847..e26929300 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -31,10 +31,7 @@ function error_handler($errno, $message, $filename, $line, $variables) { if ($errno & E_ALL ^ E_NOTICE) { watchdog("error", $types[$errno] .": $message in $filename on line $line."); - foreach (debug_backtrace() as $trace) { - $functions[] = "$trace[function] ($trace[file]:$trace[line])" . $trace["args"][0]; - } - print "<pre>$entry\n". implode(" -> ", $functions) ."</pre>"; + print "<pre>$entry</pre>"; } } |