diff options
| author | Frederic Guillot <fred@kanboard.net> | 2016-01-14 20:18:13 -0500 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2016-01-14 20:18:13 -0500 |
| commit | 805be7d33155478ef32c4bd3643dcf4025d85a05 (patch) | |
| tree | 4ee858d96f3e3bf2b630471db148446c3c56b693 /app/Controller/Auth.php | |
| parent | dc35a78374e9b091505cfc56eefcd0c631c56e3a (diff) | |
Move validator methods
Diffstat (limited to 'app/Controller/Auth.php')
| -rw-r--r-- | app/Controller/Auth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Auth.php b/app/Controller/Auth.php index 07e66070..5284e126 100644 --- a/app/Controller/Auth.php +++ b/app/Controller/Auth.php @@ -39,7 +39,7 @@ class Auth extends Base { $values = $this->request->getValues(); $this->sessionStorage->hasRememberMe = ! empty($values['remember_me']); - list($valid, $errors) = $this->authentication->validateForm($values); + list($valid, $errors) = $this->authValidator->validateForm($values); if ($valid) { $this->redirectAfterLogin(); |
