Browse Source

Merge pull request #1879 from jasonlewis/fix/use-base-path-in-start

Use the base.path when loading the illuminate application.
Taylor Otwell 11 years ago
parent
commit
5c340a60a9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bootstrap/start.php

+ 1 - 1
bootstrap/start.php

@@ -54,7 +54,7 @@ $app->bindInstallPaths(require __DIR__.'/paths.php');
 |
 |
 */
 */
 
 
-$framework = __DIR__.'/../vendor/laravel/framework/src';
+$framework = $app['path.base'].'/vendor/laravel/framework/src';
 
 
 require $framework.'/Illuminate/Foundation/start.php';
 require $framework.'/Illuminate/Foundation/start.php';