From 1f71dc768f8c475f9289ab0390c9db775cc64fb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Tempez?= Date: Mon, 16 Dec 2024 21:40:07 +0100 Subject: [PATCH] =?UTF-8?q?libell=C3=A9s=20et=20absence=20de=20double=20au?= =?UTF-8?q?thentification=20si=20compte=20inf=C3=A9rieur=20au=20seuil?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/module/user/user.php | 8 ++++---- core/module/user/view/auth/auth.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/core/module/user/user.php b/core/module/user/user.php index 928e5556..e26eaa6e 100644 --- a/core/module/user/user.php +++ b/core/module/user/user.php @@ -1068,9 +1068,9 @@ class user extends common * Double authentification en cas de saisie correcte */ - // Clé d'authenfication utlisée pour lié le compte au cookie au lieu de stocke le hash du mot de passe + // Clé d'authenfication utlisée pour lier le compte au cookie au lieu de stocker le hash du mot de passe $authKey = uniqid('', true) . bin2hex(random_bytes(8)); - if ($this->getData(['config', 'connect', 'mailAuth']) >= $this->getData(['user', $userId, 'group'])) { + if ($this->getData(['user', $userId, 'group']) >= $this->getData(['config', 'connect', 'mailAuth'])) { $logStatus = 'Envoi du mail d\'authentification'; // Redirection vers la page d'authentification $authRedirect = 'user/auth/'; @@ -1231,9 +1231,9 @@ class user extends common ) { $sent = $this->sendMail( $this->getUser('mail'), - 'Tentative de connexion à votre', + 'Validation de la connexion à votre compte', //'Bonjour ' . $item['prenom'] . ' ' . $item['nom'] . ',

' . - '

Clé de validation à saisir dans le formulaire :

' . + '

Clé de validation à saisir dans le formulaire de connexion :

' . '

' . $this->getData(['user', $this->getUser('id'), 'authKey']) . '

', null, $this->getData(['config', 'smtp', 'from']) diff --git a/core/module/user/view/auth/auth.php b/core/module/user/view/auth/auth.php index ca948b6f..896b89c3 100644 --- a/core/module/user/view/auth/auth.php +++ b/core/module/user/view/auth/auth.php @@ -2,7 +2,7 @@
helper::translate('Clé reçue par couriel') + 'label' => helper::translate('Clé reçue par courriel') ]); ?>