From 984dfaa7d8dbfbc7b410c33031d437f5335c66f8 Mon Sep 17 00:00:00 2001 From: Kjartan Mannes Date: Fri, 27 Sep 2002 17:06:50 +0000 Subject: - fixed a bug in module_invoke_all , it will now also add 0's to the result array. Thanks Moshe. --- includes/common.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/common.inc') 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 "
$entry
"; } } -- cgit v1.2.3