Browse Source

Refactoring Router class.

Taylor Otwell 13 years ago
parent
commit
94ccbffb7d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/router.php

+ 1 - 1
system/router.php

@@ -23,7 +23,7 @@ class Router {
 
 		if (is_null(static::$routes))
 		{
-			static::$routes = ( ! is_dir(APP_PATH.'routes')) ? require APP_PATH.'routes'.EXT : static::load($uri);
+			static::$routes = (is_dir(APP_PATH.'routes')) ? static::load($uri) : require APP_PATH.'routes'.EXT;
 		}
 
 		// Is there an exact match for the request?