Browse Source

dont override paths if they are already set in bootstrap.

Taylor Otwell 13 years ago
parent
commit
711d60a506
1 changed files with 4 additions and 1 deletions
  1. 4 1
      paths.php

+ 4 - 1
paths.php

@@ -65,7 +65,10 @@ foreach ($paths as $name => $path)
 {
 	if ($web) $path = "../{$path}";
 
-	$GLOBALS['laravel_paths'][$name] = realpath($path).DS;
+	if ( ! isset($GLOBALS['laravel_paths'][$name]))
+	{
+		$GLOBALS['laravel_paths'][$name] = realpath($path).DS;
+	}
 }
 
 /**