summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorRick Ellis <rick.ellis@ellislab.com>2008-09-30 23:07:22 +0200
committerRick Ellis <rick.ellis@ellislab.com>2008-09-30 23:07:22 +0200
commitb2675159482af40004e32ec30fbf6f52cfe62a51 (patch)
treeb934a00a061309b4a0d3669e2291ee1a33142cc0 /system
parent1346aac56e4c5effee5a66780095ea9d4ea8cf52 (diff)
Fixed a routing bug that occurred when the default route pointed to a subfolder. Bug report: http://codeigniter.com/bug_tracker/bug/4661/
Diffstat (limited to 'system')
-rw-r--r--system/libraries/Router.php14
1 files changed, 3 insertions, 11 deletions
diff --git a/system/libraries/Router.php b/system/libraries/Router.php
index 4b90b4bd2..f1923794e 100644
--- a/system/libraries/Router.php
+++ b/system/libraries/Router.php
@@ -63,7 +63,7 @@ class CI_Router {
* @return void
*/
function _set_routing()
- {
+ {
// Are query strings enabled in the config file?
// If so, we're done since segment based URIs are not used with query strings.
if ($this->config->item('enable_query_strings') === TRUE AND isset($_GET[$this->config->item('controller_trigger')]))
@@ -97,16 +97,8 @@ class CI_Router {
{
show_error("Unable to determine what should be displayed. A default route has not been specified in the routing file.");
}
-
- $this->set_class($this->default_controller);
- $this->set_method('index');
- $this->_set_request(array($this->default_controller, 'index'));
-
- // re-index the routed segments array so it starts with 1 rather than 0
- $this->uri->_reindex_segments();
-
- log_message('debug', "No URI present. Default controller set.");
- return;
+
+ $this->uri->uri_string = $this->default_controller;
}
unset($this->routes['default_controller']);