diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-01-10 21:04:29 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-01-10 21:04:29 +0100 |
commit | 189a34ec0949c6e96c896b92a8b1ea09ae9f232c (patch) | |
tree | ddb25a94de1095598e1b88bc2d082552cef392e5 /system/core/CodeIgniter.php | |
parent | 3c7c461a93145b045ba688585a5b606e28b7d7cb (diff) | |
parent | b790371f328e49ed57eda85bf33817e033b85601 (diff) |
Merge upstream branch
Diffstat (limited to 'system/core/CodeIgniter.php')
-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'))) ) { |