summaryrefslogtreecommitdiffstats
path: root/system/core/CodeIgniter.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-01-10 17:14:28 +0100
committerAndrey Andreev <narf@bofh.bg>2012-01-10 17:14:28 +0100
commit176b363e534da12a38a75c9e2ba273846dfa35a7 (patch)
tree62e9b0d6577cb489dd3ee8a4ee006ec952510cd0 /system/core/CodeIgniter.php
parent3b8ad8f6c300b4cec6901e5053495f93e104d267 (diff)
Fix a bug in system/core/CodeIgniter.php
Diffstat (limited to 'system/core/CodeIgniter.php')
-rwxr-xr-xsystem/core/CodeIgniter.php2
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')))
)
{