даты рождения не совпадали

This commit is contained in:
Ivor Barhansky 2023-01-12 05:31:22 +02:00
parent c647600141
commit e8252b8d4d

View File

@ -37,7 +37,7 @@ if (isset($_POST['relogin'])) {
if ($lst_psw) {
$error = 'Высылать пароль можно не более одного раза в сутки.';
} elseif (
str_replace('0', '', $_POST['redate']) == str_replace('0', '', $usr['bithday'])
str_replace('0', '', date('d.m.Y', strtotime($_POST['redate']))) == str_replace('0', '', $usr['bithday'])
) {
$error = '<br><br><br>Пароль от персонажа &quot;' . $usr['login'] . '&quot; был успешно выслан на E-mail указанный при регистрации! <br><br><br>';
$re = Db::getValue(
@ -45,7 +45,7 @@ if (isset($_POST['relogin'])) {
[$usr['id'], '']
);
if ($u['securetime'] < Config::get('securetime')) {
if ($usr['securetime'] < Config::get('securetime')) {
unset($re);
}
if (!isset($re)) {