Bug login in french
This commit is contained in:
parent
0c65c0d11e
commit
b343de6058
@ -343,12 +343,9 @@ class common
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Langue de l'administration
|
// Langue de l'administration
|
||||||
if ($this->getData(['user']) === []) {
|
if ($this->getData(['user']) !== []) {
|
||||||
// Installation en cours
|
// Langue sélectionnée dans le compte, la langue du cookie sinon celle du compte ouvert
|
||||||
self::$i18nUI = array_key_exists($this->getInput('ZWII_UI'), self::$languages) ? $this->getInput('ZWII_UI') : 'fr_FR';
|
self::$i18nUI = $this->getData(['user', $this->getUser('id'), 'language']) ? $this->getData(['user', $this->getUser('id'), 'language']) : $this->getInput('ZWII_UI');
|
||||||
} else {
|
|
||||||
// Langue sélectionnée dans le compte
|
|
||||||
self::$i18nUI = $this->getData(['user', $this->getUser('id'), 'language']);
|
|
||||||
// Validation de la langue
|
// Validation de la langue
|
||||||
self::$i18nUI = (empty(self::$i18nUI) || is_null(self::$i18nUI))
|
self::$i18nUI = (empty(self::$i18nUI) || is_null(self::$i18nUI))
|
||||||
&& !file_exists(self::I18N_DIR . self::$i18nUI . '.json')
|
&& !file_exists(self::I18N_DIR . self::$i18nUI . '.json')
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="col4 textAlignRight">
|
<div class="col4 textAlignRight">
|
||||||
<a href="<?php echo helper::baseUrl(); ?>user/forgot/<?php echo $this->getUrl(2); ?>">Mot de passe perdu ?</a>
|
<a href="<?php echo helper::baseUrl(); ?>user/forgot/<?php echo $this->getUrl(2);?>"><?php echo helper::translate('Mot de passe perdu'); ?></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
Loading…
Reference in New Issue
Block a user