Browse Source

Don't force modules to have route files.

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

+ 3 - 1
system/routing/loader.php

@@ -37,7 +37,9 @@ class Loader {
 	 */
 	 */
 	public function load($uri)
 	public function load($uri)
 	{
 	{
-		return array_merge($this->load_nested_routes(explode('/', $uri)), require $this->path.'routes'.EXT);
+		$base = (file_exists($path = $this->path.'routes'.EXT)) ? require $path : array();
+
+		return array_merge($this->load_nested_routes(explode('/', $uri)), $base);
 	}
 	}
 
 
 	/**
 	/**