Browse Source

added comment regarding nested route directories.

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

+ 2 - 3
system/router.php

@@ -73,9 +73,8 @@ class Router {
 	{
 		$segments = explode('/', $uri);
 
-		// Route files can be nested deep within sub-directories. To find the
-		// appropriate file, we work our way backward through the URI looking
-		// for the deepest matching file.
+		// Route files can be nested deep within sub-directories. To find the appropriate file, we work our
+		// way backward through the URI looking for the deepest matching file.
 		foreach (array_reverse($segments, true) as $key => $value)
 		{
 			if (file_exists($path = APP_PATH.'routes/'.implode('/', array_slice($segments, 0, $key + 1)).EXT))