summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorKjartan Mannes <kjartan@2.no-reply.drupal.org>2003-09-29 14:36:48 +0000
committerKjartan Mannes <kjartan@2.no-reply.drupal.org>2003-09-29 14:36:48 +0000
commit9a0573a8e1c3427ac9e1a607fde3dc15f8f9d3a1 (patch)
tree59274f9c3eeb540cdfef1ad2360790b9d6f696ea /includes
parent57c60ddbe2e9107f10c873a8bf9b9f6de979194a (diff)
downloadbrdo-9a0573a8e1c3427ac9e1a607fde3dc15f8f9d3a1.tar.gz
brdo-9a0573a8e1c3427ac9e1a607fde3dc15f8f9d3a1.tar.bz2
- Rolling back debug_backtrace(). Handy to have, but PHP 4.3 required.
Diffstat (limited to 'includes')
-rw-r--r--includes/common.inc5
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>";
}
}