Commit 0b3417dcb4032d0fb868349cc7efd464ab16fd28
1 parent
2ed50053
Exists in
master
and in
2 other branches
ldap bugfix
Showing
2 changed files
with
7 additions
and
8 deletions
Show diff stats
README.md
... | ... | @@ -54,7 +54,7 @@ Logiciel testé et validé sur les configurations suivantes : |
54 | 54 | VERSION ACTUELLE |
55 | 55 | |
56 | 56 | Date: 14/02/2019 |
57 | -Version: 2.10.12.bugfix3 | |
57 | +Version: 2.10.12.bugfix4 | |
58 | 58 | Author: EP |
59 | 59 | (version IRAP only) Bugfix LDAP anonyme, refactorisation, et optimisation |
60 | 60 | ... | ... |
src/Controller/UsersController.php
... | ... | @@ -61,21 +61,20 @@ class UsersController extends AppController |
61 | 61 | return parent::isAuthorized($user); |
62 | 62 | } |
63 | 63 | |
64 | + /* | |
65 | + // Utilisateur identifie | |
66 | + //debug($user); | |
67 | + // On va maintenant à la page qui etait demandee | |
68 | + // Utilisateur non reconnu | |
69 | + */ | |
64 | 70 | public function login() |
65 | 71 | { |
66 | 72 | if ($this->request->is('post')) { |
67 | - | |
68 | 73 | $user = $this->LdapAuth->connection(); |
69 | - //debug($user); | |
70 | - | |
71 | - // Utilisateur identifié | |
72 | 74 | if ($user != FALSE) { |
73 | 75 | $this->LdapAuth->setUser($user); |
74 | - // On va maintenant à la page qui était demandée | |
75 | 76 | return $this->redirect($this->LdapAuth->redirectUrl()); |
76 | 77 | } |
77 | - | |
78 | - // Utilisateur non reconnu | |
79 | 78 | $this->Flash->error(__('Login ou mot de passe invalide, réessayez')); |
80 | 79 | } |
81 | 80 | } | ... | ... |