From 5d52a34f050362faa5c73073656604e3f97792b3 Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Fri, 22 Nov 2013 10:02:42 +0100 Subject: [PATCH] HttpCache can not be activated as default --- web/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/index.php b/web/index.php index 54ccee7a4..378bf1430 100755 --- a/web/index.php +++ b/web/index.php @@ -11,7 +11,7 @@ require __DIR__ . '/../core/bootstrap.php'; $request = Request::createFromGlobals(); $thelia = new Thelia("prod", false); -$thelia = new HttpCache($thelia); +//$thelia = new HttpCache($thelia); $response = $thelia->handle($request)->prepare($request)->send(); $thelia->terminate($request, $response);