diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-08-15 17:23:41 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-08-15 17:23:41 -0700 |
commit | 9eeded33f68872515954a2fc177fcb47a9273ae9 (patch) | |
tree | f3ef9507e087ca6bf3ce624232da240a8689b051 /app/Model/Ldap.php | |
parent | c539bdc8ab746c5afd48cf87de057dc38d50adac (diff) |
Add email notifications
Diffstat (limited to 'app/Model/Ldap.php')
-rw-r--r-- | app/Model/Ldap.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/Model/Ldap.php b/app/Model/Ldap.php index dabcd5ff..007f7171 100644 --- a/app/Model/Ldap.php +++ b/app/Model/Ldap.php @@ -73,8 +73,7 @@ class Ldap extends Base */ public function create($username, $name, $email) { - $userModel = new User($this->db, $this->event); - $user = $userModel->getByUsername($username); + $user = $this->user->getByUsername($username); // There is an existing user account if ($user) { |