Commit 711d60a5 authored by Taylor Otwell's avatar Taylor Otwell

dont override paths if they are already set in bootstrap.

parent a289b287
...@@ -65,7 +65,10 @@ foreach ($paths as $name => $path) ...@@ -65,7 +65,10 @@ foreach ($paths as $name => $path)
{ {
if ($web) $path = "../{$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;
}
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment