diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-01-10 17:14:28 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-01-10 17:14:28 +0100 |
commit | 176b363e534da12a38a75c9e2ba273846dfa35a7 (patch) | |
tree | 62e9b0d6577cb489dd3ee8a4ee006ec952510cd0 /system/core | |
parent | 3b8ad8f6c300b4cec6901e5053495f93e104d267 (diff) |
Fix a bug in system/core/CodeIgniter.php
Diffstat (limited to 'system/core')
-rwxr-xr-x | system/core/CodeIgniter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php index cb5d439bd..7af3c485d 100755 --- a/system/core/CodeIgniter.php +++ b/system/core/CodeIgniter.php @@ -267,7 +267,7 @@ $method = $RTR->fetch_method(); if ( ! class_exists($class) - OR strpos($method, '_', 1) === 0 + OR strpos($method, '_') === 0 OR in_array(strtolower($method), array_map('strtolower', get_class_methods('CI_Controller'))) ) { |