Rapsys Git
/
airbundle
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Upgrade date and time to type cosntraint
[airbundle]
/
EventSubscriber
/
LocaleSubscriber.php
diff --git
a/EventSubscriber/LocaleSubscriber.php
b/EventSubscriber/LocaleSubscriber.php
index 2d25ba6d714c61f36f58586e63a6636cae75d280..5975bd3ed58f1a1f775424b0f78c09b8e3edcdab 100644
(file)
--- 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
$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
//Set locale
- $request->setLocale($preferred);
+
#
$request->setLocale($preferred);
//Set default locale
//Set default locale
- $request->setDefaultLocale($preferred);
+
#
$request->setDefaultLocale($preferred);
//Get router context
//Get router context
- $context = $this->router->getContext();
+
#
$context = $this->router->getContext();
//Set context locale
//Set context locale
- $context->setParameter('_locale', $preferred);
+
#
$context->setParameter('_locale', $preferred);
//Set back router context
//Set back router context
- $this->router->setContext($context);
+
#
$this->router->setContext($context);
//End process
return;
//End process
return;