summaryrefslogtreecommitdiffstats
path: root/user_guide/general
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 /user_guide/general
parentd6fdb4d8323e79e2d4d7949762de366cde8834c5 (diff)
Adding a second parameter to _remap that contains an array of the leftover segments.
Diffstat (limited to 'user_guide/general')
-rw-r--r--user_guide/general/controllers.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/user_guide/general/controllers.html b/user_guide/general/controllers.html
index 782fbfa7e..cdc4b3ee5 100644
--- a/user_guide/general/controllers.html
+++ b/user_guide/general/controllers.html
@@ -229,7 +229,7 @@ CodeIgniter permits you to override this behavior through the use of the <kbd>_r
get called regardless of what your URI contains. It overrides the normal behavior in which the URI determines which function is called,
allowing you to define your own function routing rules.</p>
-<p>The overridden function call (typically the second segment of the URI) will be passed as a parameter the <kbd>_remap()</kbd> function:</p>
+<p>The overridden function call (typically the second segment of the URI) will be passed as a parameter to the <kbd>_remap()</kbd> function:</p>
<code>function _remap(<var>$method</var>)<br />
{<br />
@@ -243,6 +243,7 @@ allowing you to define your own function routing rules.</p>
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
}</code>
+<p>An array of leftover segments are passed into <kbd>_remap()</kbd> as an optional second parameter.</p>