diff options
author | Alex Bilbie <alex@alexbilbie.com> | 2012-06-02 12:07:47 +0200 |
---|---|---|
committer | Alex Bilbie <alex@alexbilbie.com> | 2012-06-02 12:07:47 +0200 |
commit | ed944a3c70a0bad158cd5a6ca5ce1f2e717aff5d (patch) | |
tree | efe969ad1ab4c8eec3f9af743f49a51c82a13a93 /system/core/Hooks.php | |
parent | f3b95d383806a9366de9a526a37d78287a09d8b6 (diff) |
Replaced `==` with `===` and `!=` with `!==` in /system/core
Diffstat (limited to 'system/core/Hooks.php')
-rwxr-xr-x | system/core/Hooks.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Hooks.php b/system/core/Hooks.php index 5bbb0009a..29fd88201 100755 --- a/system/core/Hooks.php +++ b/system/core/Hooks.php @@ -72,7 +72,7 @@ class CI_Hooks { // If hooks are not enabled in the config file // there is nothing else to do - if ($CFG->item('enable_hooks') == FALSE) + if ($CFG->item('enable_hooks') === FALSE) { return; } |