summaryrefslogtreecommitdiffstats
path: root/system/core
diff options
context:
space:
mode:
authorPascal Kriete <pascal.kriete@ellislab.com>2010-11-09 21:19:50 +0100
committerPascal Kriete <pascal.kriete@ellislab.com>2010-11-09 21:19:50 +0100
commit3431ae375f7e9283ccfe7e165f39bfc84d79f694 (patch)
treef2adbd25947a426d96707634c1287388d036cdcd /system/core
parentd6fdb4d8323e79e2d4d7949762de366cde8834c5 (diff)
Adding a second parameter to _remap that contains an array of the leftover segments.
Diffstat (limited to 'system/core')
-rw-r--r--system/core/CodeIgniter.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php
index e701cc323..b52281918 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
{