From ed89cfb13b826f8d1cdd286187911c565beff42f Mon Sep 17 00:00:00 2001 From: Jason Lewis Date: Sun, 14 Apr 2013 13:19:52 +1000 Subject: [PATCH] Use the base.path when loading the illuminate application. Signed-off-by: Jason Lewis --- bootstrap/start.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/start.php b/bootstrap/start.php index f418a138..cd8a5b69 100644 --- a/bootstrap/start.php +++ b/bootstrap/start.php @@ -54,7 +54,7 @@ | */ -$framework = __DIR__.'/../vendor/laravel/framework/src'; +$framework = $app['path.base'].'/vendor/laravel/framework/src'; require $framework.'/Illuminate/Foundation/start.php';