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