Browse Source

fixed routing bug when using nested route directories.

Taylor Otwell 13 years ago
parent
commit
a7e39e9cf0
1 changed files with 2 additions and 0 deletions
  1. 2 0
      system/router.php

+ 2 - 0
system/router.php

@@ -68,6 +68,8 @@ class Router {
 			if (file_exists($path = ROUTE_PATH.implode('/', array_slice($segments, 0, $key + 1)).EXT))
 			{
 				$routes = require $path;
+
+				break;
 			}
 		}