diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-05-24 13:55:45 +0200 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-05-24 13:55:45 +0200 |
commit | 6763522d29416b7db90a6d3c5dceffe1536d8efe (patch) | |
tree | a8694c530b4467f496eeeba5fcd25c08654d4919 /system/core/Common.php | |
parent | ae9475557c1968826aee0fa5554899c8329412c2 (diff) | |
parent | 13a9bf472f548463682d4d3fafce146b9a9ced3c (diff) |
Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into email
Diffstat (limited to 'system/core/Common.php')
-rw-r--r-- | system/core/Common.php | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/system/core/Common.php b/system/core/Common.php index 8b897776f..4b733ac97 100644 --- a/system/core/Common.php +++ b/system/core/Common.php @@ -487,16 +487,6 @@ if ( ! function_exists('_exception_handler')) */ function _exception_handler($severity, $message, $filepath, $line) { - // We don't bother with "strict" notices since they tend to fill up - // the log file with excess information that isn't normally very helpful. - // For example, if you are running PHP 5 and you use version 4 style - // class functions (without prefixes like "public", "private", etc.) - // you'll get notices telling you that these have been deprecated. - if ($severity == E_STRICT) - { - return; - } - $_error =& load_class('Exceptions', 'core'); // Should we display the error? We'll get the current error_reporting |