summaryrefslogtreecommitdiffstats
path: root/system/core/Common.php
diff options
context:
space:
mode:
authorFrancesco Negri <francesconegri@gmail.com>2012-08-04 13:32:19 +0200
committerFrancesco Negri <francesconegri@gmail.com>2012-08-04 13:35:01 +0200
commit312bdc5e2160784c7fdd0f38c6d417a9eb5babe0 (patch)
tree70932a3f6e2c26fb7a84994079471b1fa8bfc2b9 /system/core/Common.php
parent0e0c37bc3b8e46d9ecc89fd5591e6b258ebd8b74 (diff)
fixed whitespace
Diffstat (limited to 'system/core/Common.php')
-rw-r--r--system/core/Common.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/system/core/Common.php b/system/core/Common.php
index cb99d0505..32c8bd68d 100644
--- a/system/core/Common.php
+++ b/system/core/Common.php
@@ -527,17 +527,17 @@ if ( ! function_exists('_exception_handler'))
// Should we ignore the error? We'll get the current error_reporting
// level and add its bits with the severity bits to find out.
if (($severity & error_reporting()) !== $severity)
- {
- return;
- }
-
- // Should we display the error?
- if ((bool) ini_get('display_errors') === TRUE)
+ {
+ return;
+ }
+
+ // Should we display the error?
+ if ((bool) ini_get('display_errors') === TRUE)
{
$_error->show_php_error($severity, $message, $filepath, $line);
}
- $_error->log_exception($severity, $message, $filepath, $line);
+ $_error->log_exception($severity, $message, $filepath, $line);
}
}