diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-08-09 22:51:51 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-08-09 22:51:51 +0200 |
commit | 0a5599697fb9d52f067ac1846492641cf1adc05a (patch) | |
tree | 459bbcee81da80c617b81b05c7d4c351f6632ac1 /phpBB/includes | |
parent | f41c51d1ecc36bc6e5dffc70ad7a5ed50d4ec7ea (diff) | |
download | forums-0a5599697fb9d52f067ac1846492641cf1adc05a.tar forums-0a5599697fb9d52f067ac1846492641cf1adc05a.tar.gz forums-0a5599697fb9d52f067ac1846492641cf1adc05a.tar.bz2 forums-0a5599697fb9d52f067ac1846492641cf1adc05a.tar.xz forums-0a5599697fb9d52f067ac1846492641cf1adc05a.zip |
[ticket/11327] Split up into forgot password and reset password
PHPBB3-11327
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 5ac26b450e..e8f8b0ff46 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2526,7 +2526,7 @@ function login_box($redirect = '', $l_explain = '', $l_success = '', $admin = fa 'LOGIN_ERROR' => $err, 'LOGIN_EXPLAIN' => $l_explain, - 'U_SEND_PASSWORD' => ($config['email_enable']) ? $controller_helper->route('phpbb_ucp_reset_password_controller') : '', + 'U_SEND_PASSWORD' => ($config['email_enable']) ? $controller_helper->route('phpbb_ucp_forgot_password_controller') : '', 'U_RESEND_ACTIVATION' => ($config['require_activation'] == USER_ACTIVATION_SELF && $config['email_enable']) ? append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=resend_act') : '', 'U_TERMS_USE' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=terms'), 'U_PRIVACY' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=privacy'), |