summaryrefslogtreecommitdiffstats
path: root/system/codeigniter
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-09-23 03:22:56 +0200
committeradmin <devnull@localhost>2006-09-23 03:22:56 +0200
commit8407ccaa1162df0addf49d50a9a0b6e9a4151804 (patch)
tree60194aa83c6ecc8913247f6395fcda5c235ab58f /system/codeigniter
parent1af5549a6185858e1fce406005cf663355e254a3 (diff)
Diffstat (limited to 'system/codeigniter')
-rw-r--r--system/codeigniter/CodeIgniter.php12
1 files changed, 10 insertions, 2 deletions
diff --git a/system/codeigniter/CodeIgniter.php b/system/codeigniter/CodeIgniter.php
index e169be0b1..b055d3b1e 100644
--- a/system/codeigniter/CodeIgniter.php
+++ b/system/codeigniter/CodeIgniter.php
@@ -198,8 +198,16 @@ else
}
// Call the requested method. Any URI segments present (besides the class/function)
- // will be passed to the method for convenience
- call_user_func_array(array(&$CI, $method), array_slice($RTR->rsegments, 2));
+ // will be passed to the method for convenience, either as an array or discreet params
+
+ if (isset($CI->_uri_as_array) AND $CI->_uri_as_array === TRUE)
+ {
+ $CI->$method(array_slice($RTR->rsegments, 2));
+ }
+ else
+ {
+ call_user_func_array(array(&$CI, $method), array_slice($RTR->rsegments, 2));
+ }
}
}