From a2e40872c052adb6088a43efe46fc2a0ee9bb457 Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Mon, 8 Jul 2013 10:10:05 +0200 Subject: [PATCH] extends symfony session for adding some helpers --- core/lib/Thelia/Core/TheliaHttpKernel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Thelia/Core/TheliaHttpKernel.php b/core/lib/Thelia/Core/TheliaHttpKernel.php index f6df3a62b..445ebd1fa 100755 --- a/core/lib/Thelia/Core/TheliaHttpKernel.php +++ b/core/lib/Thelia/Core/TheliaHttpKernel.php @@ -196,7 +196,7 @@ class TheliaHttpKernel extends HttpKernel $storage->setOptions(json_decode(Model\ConfigQuery::read("session_config.config"))); } - $session = new Session\Session($storage); + $session = new \Thelia\Core\Session\Session($storage); $session->start(); $request->setSession($session);