Remove unused Autoload

This commit is contained in:
Romain Neutron
2012-02-28 13:55:24 +01:00
parent 628a1fa4d3
commit 379926ccf5
2 changed files with 2 additions and 4 deletions

View File

@@ -15,8 +15,7 @@
* @license http://opensource.org/licenses/gpl-3.0 GPLv3 * @license http://opensource.org/licenses/gpl-3.0 GPLv3
* @link www.phraseanet.com * @link www.phraseanet.com
*/ */
require_once __DIR__ . "/../../lib/bootstrap.php"; $Core = require_once __DIR__ . "/../../lib/bootstrap.php";
bootstrap::register_autoloads();
$request = http_request::getInstance(); $request = http_request::getInstance();
$parm = $request->get_parms('session'); $parm = $request->get_parms('session');

View File

@@ -15,8 +15,7 @@
* @license http://opensource.org/licenses/gpl-3.0 GPLv3 * @license http://opensource.org/licenses/gpl-3.0 GPLv3
* @link www.phraseanet.com * @link www.phraseanet.com
*/ */
require_once __DIR__ . "/../../lib/bootstrap.php"; $Core = require_once __DIR__ . "/../../lib/bootstrap.php";
bootstrap::register_autoloads();
$app = require __DIR__ .'/../../lib/Alchemy/Phrasea/Application/Overview.php'; $app = require __DIR__ .'/../../lib/Alchemy/Phrasea/Application/Overview.php';