mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
Registration: fix brithday, AGAIN AND AGAIN
This commit is contained in:
parent
c6a13b92cd
commit
403ed65bd1
1 changed files with 3 additions and 3 deletions
|
@ -89,13 +89,13 @@ final class AuthPresenter extends OpenVKPresenter
|
|||
if(!$this->emailValid($this->postParam("email")))
|
||||
$this->flashFail("err", "Неверный email адрес", "Email, который вы ввели, не является корректным.");
|
||||
|
||||
if (strtotime($this->postParam("birthday")) > time())
|
||||
$this->flashFail("err", "Неверная дата рождения", "Дату рождения, которую вы ввели, не является корректным.");
|
||||
|
||||
$chUser = ChandlerUser::create($this->postParam("email"), $this->postParam("password"));
|
||||
if(!$chUser)
|
||||
$this->flashFail("err", "Не удалось зарегистрироваться", "Пользователь с таким email уже существует.");
|
||||
|
||||
if (strtotime($this->postParam("birthday")) > time())
|
||||
$this->flashFail("err", "Неверная дата рождения", "Дату рождения, которую вы ввели, не является корректным.");
|
||||
|
||||
$user = new User;
|
||||
$user->setUser($chUser->getId());
|
||||
$user->setFirst_Name($this->postParam("first_name"));
|
||||
|
|
Loading…
Reference in a new issue