mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
Registration: fix birthday. Again.
This commit is contained in:
parent
250912783c
commit
c6a13b92cd
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ final class AuthPresenter extends OpenVKPresenter
|
||||||
if(!$chUser)
|
if(!$chUser)
|
||||||
$this->flashFail("err", "Не удалось зарегистрироваться", "Пользователь с таким email уже существует.");
|
$this->flashFail("err", "Не удалось зарегистрироваться", "Пользователь с таким email уже существует.");
|
||||||
|
|
||||||
if (!strtotime($this->postParam("birthday")) < time())
|
if (strtotime($this->postParam("birthday")) > time())
|
||||||
$this->flashFail("err", "Неверная дата рождения", "Дату рождения, которую вы ввели, не является корректным.");
|
$this->flashFail("err", "Неверная дата рождения", "Дату рождения, которую вы ввели, не является корректным.");
|
||||||
|
|
||||||
$user = new User;
|
$user = new User;
|
||||||
|
|
Loading…
Reference in a new issue