Changing the router to support any number of segments in the default route. Closes #261.
diff --git a/system/core/Router.php b/system/core/Router.php
index 9276800..e215193 100644
--- a/system/core/Router.php
+++ b/system/core/Router.php
@@ -144,7 +144,7 @@
 
 			$this->set_class($x[0]);
 			$this->set_method($x[1]);
-			$this->_set_request(array($x[0], $x[1]));
+			$this->_set_request($x);
 		}
 		else
 		{