Registration: fix birthday. Again.

This commit is contained in:
0x7d5 2021-10-13 09:36:11 +05:00
parent 250912783c
commit c6a13b92cd

View file

@ -93,7 +93,7 @@ final class AuthPresenter extends OpenVKPresenter
if(!$chUser)
$this->flashFail("err", "Не удалось зарегистрироваться", "Пользователь с таким email уже существует.");
if (!strtotime($this->postParam("birthday")) < time())
if (strtotime($this->postParam("birthday")) > time())
$this->flashFail("err", "Неверная дата рождения", "Дату рождения, которую вы ввели, не является корректным.");
$user = new User;