diff --git a/design/default/html/password_remind.tpl b/design/default/html/password_remind.tpl index adf64ba..20e74d2 100755 --- a/design/default/html/password_remind.tpl +++ b/design/default/html/password_remind.tpl @@ -2,6 +2,7 @@ {* Канонический адрес страницы *} {$canonical="/user/password_remind" scope=root} +{$meta_title = "Напоминание пароля" scope=root} {if $email_sent}

Вам отправлено письмо

diff --git a/view/LoginView.php b/view/LoginView.php index 6ff001f..54e7b79 100755 --- a/view/LoginView.php +++ b/view/LoginView.php @@ -20,6 +20,10 @@ public function fetch() unset($_SESSION['user_id']); header('Location: ' . $this->config->root_url, true, 302); exit(); + } // Если авторизован + elseif ($this->user) { + header('Location: '.$this->config->root_url.'/user', true, 302); + exit(); } // Вспомнить пароль elseif ($this->request->get('action') == 'password_remind') { // Если запостили email diff --git a/view/RegisterView.php b/view/RegisterView.php index ea53224..1ece636 100755 --- a/view/RegisterView.php +++ b/view/RegisterView.php @@ -15,6 +15,11 @@ class RegisterView extends View { public function fetch() { + if ($this->user) { + header('Location: '.$this->config->root_url.'/user', true, 302); + exit(); + } + $default_status = 1; // Активен ли пользователь сразу после регистрации (0 или 1) if ($this->request->method('post') && $this->request->post('register')) {