summaryrefslogtreecommitdiff
path: root/includes/common.inc
diff options
context:
space:
mode:
authorKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-09-27 17:06:50 +0000
committerKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-09-27 17:06:50 +0000
commit984dfaa7d8dbfbc7b410c33031d437f5335c66f8 (patch)
tree76d26a62e059fcf75b646cbc1851b151cd0587f7 /includes/common.inc
parent564574ba07bfcdee85bc73a0405cc68d00b2685d (diff)
downloadbrdo-984dfaa7d8dbfbc7b410c33031d437f5335c66f8.tar.gz
brdo-984dfaa7d8dbfbc7b410c33031d437f5335c66f8.tar.bz2
- fixed a bug in module_invoke_all , it will now also add 0's to the result
array. Thanks Moshe.
Diffstat (limited to 'includes/common.inc')
-rw-r--r--includes/common.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc
index 33e9033a7..f5564baa8 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -29,7 +29,7 @@ function error_handler($errno, $message, $filename, $line, $variables) {
$entry = $types[$errno] .": $message in $filename on line $line.";
if (($errno == 1 || $errno == 2 || $errno == 4 || $errno == 256) && error_reporting()) {
watchdog("error", $types[$errno] .": $message in $filename on line $line.");
- print $entry;
+ print "<pre>$entry</pre>";
}
}