diff options
Diffstat (limited to 'includes/common.inc')
-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>"; } } |