Skip to content

Commit

Permalink
Исправлена орфографическая ошибка
Browse files Browse the repository at this point in the history
  • Loading branch information
Simplas920 authored May 21, 2020
1 parent 9fbacf1 commit 8518a0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions password.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@

// Если пришли по ссылке из письма
if ($c = $simpla->request->get('code')) {
// Код не совпадает - прекращяем работу
// Код не совпадает - прекращаем работу
if (empty($_SESSION['admin_password_recovery_code']) || empty($c) || $_SESSION['admin_password_recovery_code'] !== $c) {
header('Location:password.php');
exit();
}

// IP не совпадает - прекращяем работу
// IP не совпадает - прекращаем работу
if (empty($_SESSION['admin_password_recovery_ip'])|| empty($_SERVER['REMOTE_ADDR']) || $_SESSION['admin_password_recovery_ip'] !== $_SERVER['REMOTE_ADDR']) {
header('Location:password.php');
exit();
Expand Down

0 comments on commit 8518a0e

Please sign in to comment.