X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/0f8cc46f1169f98720bfd1acba71da5e40d1c3bd..cb13f2c73b2640a6398b73cd964f9bb5861d7910:/EventSubscriber/LocaleSubscriber.php?ds=sidebyside

diff --git a/EventSubscriber/LocaleSubscriber.php b/EventSubscriber/LocaleSubscriber.php
index 2d25ba6..5975bd3 100644
--- a/EventSubscriber/LocaleSubscriber.php
+++ b/EventSubscriber/LocaleSubscriber.php
@@ -34,22 +34,22 @@ class LocaleSubscriber implements EventSubscriberInterface {
 				$request->getSession()->set('_locale', $preferred);
 
 				//Send vary header as current page locale depend on it
-				header('Vary: accept-language');
+				#header('Vary: accept-language');
 
 				//Set locale
-				$request->setLocale($preferred);
+				#$request->setLocale($preferred);
 
 				//Set default locale
-				$request->setDefaultLocale($preferred);
+				#$request->setDefaultLocale($preferred);
 
 				//Get router context
-				$context = $this->router->getContext();
+				#$context = $this->router->getContext();
 
 				//Set context locale
-				$context->setParameter('_locale', $preferred);
+				#$context->setParameter('_locale', $preferred);
 
 				//Set back router context
-				$this->router->setContext($context);
+				#$this->router->setContext($context);
 
 				//End process
 				return;