diff options
author | Suhaib Khan <suhebjerk@gmail.com> | 2014-01-22 12:01:39 +0530 |
---|---|---|
committer | Suhaib Khan <suhebjerk@gmail.com> | 2014-01-22 12:42:33 +0530 |
commit | 88bd88b612582ba3dfc8765f359e7195c12d014f (patch) | |
tree | 90a850e815c6e7de3113b37d5bb7b09ecb0d563f /phpBB/index.php | |
parent | 45ab32bf61b9c639b7bb3374ab3226377f79c419 (diff) | |
download | forums-88bd88b612582ba3dfc8765f359e7195c12d014f.tar forums-88bd88b612582ba3dfc8765f359e7195c12d014f.tar.gz forums-88bd88b612582ba3dfc8765f359e7195c12d014f.tar.bz2 forums-88bd88b612582ba3dfc8765f359e7195c12d014f.tar.xz forums-88bd88b612582ba3dfc8765f359e7195c12d014f.zip |
Adding 'forgot password' link to index page
PHPBB3-11950
Signed-off-by: Suhaib Khan <suhebjerk@gmail.com>
Diffstat (limited to 'phpBB/index.php')
-rw-r--r-- | phpBB/index.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/index.php b/phpBB/index.php index e3cae26779..c363781667 100644 --- a/phpBB/index.php +++ b/phpBB/index.php @@ -173,6 +173,7 @@ $template->assign_vars(array( 'FORUM_UNREAD_LOCKED_IMG' => $user->img('forum_unread_locked', 'UNREAD_POSTS_LOCKED'), 'S_LOGIN_ACTION' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=login'), + 'U_SEND_PASSWORD' => ($config['email_enable']) ? append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=sendpassword') : '', 'S_DISPLAY_BIRTHDAY_LIST' => ($config['load_birthdays']) ? true : false, 'U_MARK_FORUMS' => ($user->data['is_registered'] || $config['load_anon_lastread']) ? append_sid("{$phpbb_root_path}index.$phpEx", 'hash=' . generate_link_hash('global') . '&mark=forums&mark_time=' . time()) : '', |