diff options
author | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-04-20 19:24:40 -0400 |
---|---|---|
committer | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-04-20 19:24:40 -0400 |
commit | dea5f99363d4cf8e9ffff967c8cbdb38c8c50507 (patch) | |
tree | cadeb605c8c4f919dd3e1f8d43cfec6fe980ec6d /controllers | |
parent | 1b05f20d58474f053ee8a09343389b34a7f39fb7 (diff) |
Add LDAP authentication
Diffstat (limited to 'controllers')
-rw-r--r-- | controllers/user.php | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/controllers/user.php b/controllers/user.php index 9e964a4e..cc180976 100644 --- a/controllers/user.php +++ b/controllers/user.php @@ -65,14 +65,6 @@ class User extends Base list($valid, $errors) = $this->user->validateLogin($values); if ($valid) { - - $this->lastLogin->create( - \Model\LastLogin::AUTH_DATABASE, - $this->acl->getUserId(), - $this->user->getIpAddress(), - $this->user->getUserAgent() - ); - $this->response->redirect('?controller=app'); } |