Browse Source

Add ACTIVE_MODULE constant.

Taylor Otwell 13 years ago
parent
commit
07ca09e824
1 changed files with 11 additions and 3 deletions
  1. 11 3
      system/laravel.php

+ 11 - 3
system/laravel.php

@@ -131,15 +131,23 @@ $response = Routing\Filter::call('before', array(), true);
 // --------------------------------------------------------------
 if (is_null($response))
 {
-	$path = (in_array($module = Request::segment(1), $modules)) ? MODULE_PATH.$module.'/' : APP_PATH;
-
-	if ($path !== APP_PATH)
+	if (in_array($module = Request::segment(1), $modules))
 	{
+		define('ACTIVE_MODULE', $module);
+
+		$path = MODULE_PATH.$module.'/';
+
 		if (file_exists($filters = $path.'filters'.EXT))
 		{
 			Routing\Filter::register(require $filters);
 		}
 	}
+	else
+	{
+		define('ACTIVE_MODULE', 'application');
+
+		$path = APP_PATH;
+	}
 
 	$route = Routing\Router::make(Request::method(), Request::uri(), new Routing\Loader($path))->route();