Explorar el Código

Merge branch 'dev'

master
Guillaume hace 4 años
padre
commit
d9423c5502
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  1. +6
    -1
      common/models/User.php

+ 6
- 1
common/models/User.php Ver fichero

@@ -220,7 +220,12 @@ class User extends ActiveRecordCommon implements IdentityInterface
*/
public function verifyEmail($attribute, $params)
{
$user = User::find()->where("email LIKE :email AND id != :id")->params(array(':email' => '%' . $this->email . '%', ':id' => $this->id))->one();
if($this->id) {
$user = User::find()->where("email LIKE :email AND id != :id")->params(array(':email' => '%' . $this->email . '%', ':id' => $this->id))->one();
}
else {
$user = User::find()->where("email LIKE :email")->params(array(':email' => '%' . $this->email . '%'))->one();
}

if ($user) {
$this->addError($attribute, 'Cette adresse email est déjà utilisée par un autre utilisateur ');

Cargando…
Cancelar
Guardar