diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-02-19 18:55:27 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-03-16 12:47:05 +0100 |
commit | f92f3a1a6ecbce06fbe24204ef12b2eeeb0f0d15 (patch) | |
tree | dca224d1136cae6d5a971cd110a0591ce0d8d1ef /settings/controller | |
parent | 283476a2f7c200912352eb4db097f540e3993e75 (diff) | |
download | nextcloud-server-f92f3a1a6ecbce06fbe24204ef12b2eeeb0f0d15.tar.gz nextcloud-server-f92f3a1a6ecbce06fbe24204ef12b2eeeb0f0d15.zip |
Incorporate review changes
Diffstat (limited to 'settings/controller')
-rw-r--r-- | settings/controller/userscontroller.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/settings/controller/userscontroller.php b/settings/controller/userscontroller.php index 507e57ef940..11afe514016 100644 --- a/settings/controller/userscontroller.php +++ b/settings/controller/userscontroller.php @@ -263,8 +263,7 @@ class UsersController extends Controller { * @return DataResponse */ public function create($username, $password, array $groups=array(), $email='') { - - if($email !== '' && !\OCP\Mail\Util::validateMailAddress($email)) { + if($email !== '' && !$this->mailer->validateMailAddress($email)) { return new DataResponse( array( 'message' => (string)$this->l10n->t('Invalid mail address') @@ -443,7 +442,7 @@ class UsersController extends Controller { ); } - if($mailAddress !== '' && ! \OCP\Mail\Util::validateMailAddress($mailAddress)) { + if($mailAddress !== '' && !$this->mailer->validateMailAddress($mailAddress)) { return new DataResponse( array( 'status' => 'error', |