commit | 176b363e534da12a38a75c9e2ba273846dfa35a7 | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@bofh.bg> | Tue Jan 10 18:14:28 2012 +0200 |
committer | Andrey Andreev <narf@bofh.bg> | Tue Jan 10 18:14:28 2012 +0200 |
tree | 62e9b0d6577cb489dd3ee8a4ee006ec952510cd0 | |
parent | 3b8ad8f6c300b4cec6901e5053495f93e104d267 [diff] [blame] |
Fix a bug in system/core/CodeIgniter.php
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php index cb5d439..7af3c48 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'))) ) {