From e2ada543a05ea47e8a6967629a0d0d615a7b0ba2 Mon Sep 17 00:00:00 2001 From: Romain Neutron Date: Mon, 26 Dec 2011 12:13:32 +0100 Subject: [PATCH] bootstrap.php now returns PhraseaKernel --- lib/bootstrap.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/bootstrap.php b/lib/bootstrap.php index 08b4717058..36ad600b21 100644 --- a/lib/bootstrap.php +++ b/lib/bootstrap.php @@ -11,9 +11,10 @@ /** * - * @package + * @return \Alchemy\Phrasea\Core * @license http://opensource.org/licenses/gpl-3.0 GPLv3 * @link www.phraseanet.com */ require_once dirname(__FILE__) . '/classes/bootstrap.class.php'; -bootstrap::execute(); + +return bootstrap::execute();