diff options
author | Andrey Andreev <narf@devilix.net> | 2014-02-19 21:01:57 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-02-19 21:01:57 +0100 |
commit | bf2273098b21c1d70bf52e626b35303b28239117 (patch) | |
tree | 87035add86686bb9a61ac573dde0b3287fed9019 /system/core/Common.php | |
parent | fed4ab48a3c99140ecf904fc68ce6b84185bbb67 (diff) | |
parent | 2be27448ade5e3a535b636f4fb69b1b06973551e (diff) |
Merge pull request #2891 from cristik/develop
Moved $_error load statement lower.
Diffstat (limited to 'system/core/Common.php')
-rw-r--r-- | system/core/Common.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/system/core/Common.php b/system/core/Common.php index 16a916a01..c83d80a3d 100644 --- a/system/core/Common.php +++ b/system/core/Common.php @@ -587,9 +587,7 @@ if ( ! function_exists('_exception_handler')) if ($is_error) { set_status_header(500); - } - - $_error =& load_class('Exceptions', 'core'); + } // Should we ignore the error? We'll get the current error_reporting // level and add its bits with the severity bits to find out. @@ -598,6 +596,7 @@ if ( ! function_exists('_exception_handler')) return; } + $_error =& load_class('Exceptions', 'core'); $_error->log_exception($severity, $message, $filepath, $line); // Should we display the error? |