diff options
author | Greg Aker <greg.aker@ellislab.com> | 2010-11-09 21:29:19 +0100 |
---|---|---|
committer | Greg Aker <greg.aker@ellislab.com> | 2010-11-09 21:29:19 +0100 |
commit | bdef2dcc47ef6aa8d0b82266d9038c8e7bc2bb72 (patch) | |
tree | c3e2159983b3c0951dc2e87e0f92f9ee5b394f65 /system | |
parent | 6c5b0cf0c2f2bea2887111c05fb17051cabd879a (diff) | |
parent | 7d8e8201a7c7ac160f0f07e806cd6284762defab (diff) |
Merging in changes
Diffstat (limited to 'system')
-rw-r--r-- | system/core/CodeIgniter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php index 3dfefc2ef..bf412b21d 100644 --- a/system/core/CodeIgniter.php +++ b/system/core/CodeIgniter.php @@ -299,7 +299,7 @@ // Is there a "remap" function? If so, we call it instead if (method_exists($CI, '_remap')) { - $CI->_remap($method); + $CI->_remap($method, array_slice($URI->rsegments, 2)); } else { |