Browse Source

return empty array when nested route directory doesnt have route file.

Taylor Otwell 13 years ago
parent
commit
f2363b1141
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/routing/loader.php

+ 1 - 1
system/routing/loader.php

@@ -54,7 +54,7 @@ class Loader {
 		{
 			if (is_dir($path = $this->path.implode('/', array_slice($segments, 0, $key + 1))))
 			{
-				return require $path.'/routes'.EXT;
+				return (file_exists($path = $path.'/routes'.EXT)) ? require $path : array();
 			}
 		}