diff --git a/system/libraries/Router.php b/system/libraries/Router.php
index 6fca452..501a8ee 100644
--- a/system/libraries/Router.php
+++ b/system/libraries/Router.php
@@ -252,7 +252,7 @@
 		}

 				

 		// Loop through the route array looking for wild-cards

-		foreach (array_slice($this->routes, 1) as $key => $val)

+		foreach ($this->routes as $key => $val)

 		{						

 			// Convert wild-cards to RegEx

 			$key = str_replace(':any', '.+', str_replace(':num', '[0-9]+', $key));