diff options
author | admin <devnull@localhost> | 2006-09-28 19:13:38 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-09-28 19:13:38 +0200 |
commit | ee54c112bfb488f833fa032758b817e1bb2c1d7d (patch) | |
tree | 0f88961293c374d2f6da29856466b75ce319e119 /system/codeigniter | |
parent | e721cc7c81af84dcabce2992fa693ce36b605a19 (diff) |
Diffstat (limited to 'system/codeigniter')
-rw-r--r-- | system/codeigniter/CodeIgniter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/codeigniter/CodeIgniter.php b/system/codeigniter/CodeIgniter.php index 4ac03820a..a4f18b0e1 100644 --- a/system/codeigniter/CodeIgniter.php +++ b/system/codeigniter/CodeIgniter.php @@ -145,7 +145,7 @@ $method = $RTR->fetch_method(); if ( ! class_exists($class) OR $method == 'controller' OR substr($method, 0, 1) == '_' - OR in_array($method, get_class_methods('Controller')) + OR in_array($method, get_class_methods('Controller'), TRUE) ) { show_404(); |