quguofeng vor 1 Jahr
Ursprung
Commit
bfa2eb9ca6
1 geänderte Dateien mit 3 neuen und 0 gelöschten Zeilen
  1. 3 0
      application/api/controller/User.php

+ 3 - 0
application/api/controller/User.php

@@ -120,6 +120,9 @@ class User extends Api
             $user->birthday = $birthday;
         }
         if($email){
+            if (!Validate::is($email, "email")) {
+                $this->error(__('Email is incorrect'));
+            }
             $exists = \app\common\model\User::where('username', $email)->where('id', '<>', $this->auth->id)->find();
             if ($exists) {
                 $this->error('邮箱已存在');