summaryrefslogtreecommitdiffstats
path: root/system/core/CodeIgniter.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-01-10 21:04:29 +0100
committerAndrey Andreev <narf@bofh.bg>2012-01-10 21:04:29 +0100
commit189a34ec0949c6e96c896b92a8b1ea09ae9f232c (patch)
treeddb25a94de1095598e1b88bc2d082552cef392e5 /system/core/CodeIgniter.php
parent3c7c461a93145b045ba688585a5b606e28b7d7cb (diff)
parentb790371f328e49ed57eda85bf33817e033b85601 (diff)
Merge upstream branch
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')))
)
{