commit | 3431ae375f7e9283ccfe7e165f39bfc84d79f694 | [log] [tgz] |
---|---|---|
author | Pascal Kriete <pascal.kriete@ellislab.com> | Tue Nov 09 15:19:50 2010 -0500 |
committer | Pascal Kriete <pascal.kriete@ellislab.com> | Tue Nov 09 15:19:50 2010 -0500 |
tree | f2adbd25947a426d96707634c1287388d036cdcd | |
parent | d6fdb4d8323e79e2d4d7949762de366cde8834c5 [diff] [blame] |
Adding a second parameter to _remap that contains an array of the leftover segments.
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php index e701cc3..b522819 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 {