From 25a84bc000336a84e8e4f2ea0b57cdcfb8db7ab8 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 25 Mar 2013 08:32:19 -0500 Subject: [PATCH] Change how bootstrap file is loaded. --- bootstrap/start.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bootstrap/start.php b/bootstrap/start.php index bf3cc6b3..f418a138 100644 --- a/bootstrap/start.php +++ b/bootstrap/start.php @@ -54,7 +54,9 @@ | */ -require $app->getBootstrapFile(); +$framework = __DIR__.'/../vendor/laravel/framework/src'; + +require $framework.'/Illuminate/Foundation/start.php'; /* |--------------------------------------------------------------------------