diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-09-27 17:06:50 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-09-27 17:06:50 +0000 |
commit | 984dfaa7d8dbfbc7b410c33031d437f5335c66f8 (patch) | |
tree | 76d26a62e059fcf75b646cbc1851b151cd0587f7 | |
parent | 564574ba07bfcdee85bc73a0405cc68d00b2685d (diff) | |
download | brdo-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.
-rw-r--r-- | includes/common.inc | 2 |
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>"; } } |