remove yaml component

This commit is contained in:
Manuel Raynaud
2012-12-18 14:18:57 +01:00
parent 0fc2551b21
commit 3729354805
3 changed files with 3 additions and 51 deletions

View File

@@ -5,7 +5,7 @@ use Thelia\Core\Thelia;
//use Symfony\Component\DependencyInjection;
$env = 'debug';
$env = 'dev';
require __DIR__ . '/core/bootstrap.php';
$trustIp = array(
@@ -19,7 +19,7 @@ if ( false === in_array($request->getClientIp(), $trustIp)) {
//change request to send to a 404 error page
}
$thelia = new Thelia('dev', true);
$thelia = new Thelia($env, true);
$response = $thelia->handle($request)->prepare($request)->send();