diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-08-30 09:44:10 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-08-30 09:44:10 +0200 |
commit | 8048d817ca0198b214457066a549db6f92b85bc0 (patch) | |
tree | 2910f4a029aed70ab81abc0f8e0aa673459bbe41 /phpBB/phpbb | |
parent | 454ea081f17c0dfb9eb75287698a301e5c5d275b (diff) | |
download | forums-8048d817ca0198b214457066a549db6f92b85bc0.tar forums-8048d817ca0198b214457066a549db6f92b85bc0.tar.gz forums-8048d817ca0198b214457066a549db6f92b85bc0.tar.bz2 forums-8048d817ca0198b214457066a549db6f92b85bc0.tar.xz forums-8048d817ca0198b214457066a549db6f92b85bc0.zip |
[ticket/11327] Move html output to reset password html file
PHPBB3-11327
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/ucp/controller/reset_password.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/phpBB/phpbb/ucp/controller/reset_password.php b/phpBB/phpbb/ucp/controller/reset_password.php index 9d736b26b8..fb66ea1b99 100644 --- a/phpBB/phpbb/ucp/controller/reset_password.php +++ b/phpBB/phpbb/ucp/controller/reset_password.php @@ -206,7 +206,7 @@ class reset_password { $message = $this->language->lang('PASSWORD_RESET_LINK_SENT') . '<br /><br />' . $this->language->lang('RETURN_INDEX', '<a href="' . append_sid("{$this->root_path}index.{$this->php_ext}") . '">', '</a>'); - if ($rowset === false) + if (empty($rowset)) { return $this->helper->message($message); } @@ -420,9 +420,13 @@ class reset_password } } + if (!empty($errors)) + { + $this->template->assign_block_vars_array('PASSWORD_RESET_ERRORS', array_map([$this->language, 'lang'], $errors)); + } + $this->template->assign_vars([ 'S_IS_PASSWORD_RESET' => true, - 'ERROR' => !empty($errors) ? implode('<br />', array_map([$this->language, 'lang'], $errors)) : '', 'U_RESET_PASSWORD_ACTION' => $this->helper->route('phpbb_ucp_reset_password_controller'), 'S_HIDDEN_FIELDS' => build_hidden_fields([ 'u' => $user_id, |