summaryrefslogtreecommitdiffstats
path: root/system/core
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2012-01-10 19:50:43 +0100
committerPhil Sturgeon <email@philsturgeon.co.uk>2012-01-10 19:50:43 +0100
commit61e42c0e97cf49033f474a8b82506a9d31c81bac (patch)
tree634850dec66305648f86d7eb9714a47728066755 /system/core
parent9d587505fbb7f6f886802cd2a72f1ffcc97826d3 (diff)
parent176b363e534da12a38a75c9e2ba273846dfa35a7 (diff)
Merge pull request #912 from narfbg/develop-fix-fh
Fixes for two previous commits
Diffstat (limited to 'system/core')
-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')))
)
{