aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Mossing Holsteyn <jim@beta-garden.com>2018-09-23 03:01:09 +0200
committerMarc Alexander <admin@m-a-styles.de>2018-10-10 22:42:41 +0200
commit35d49f515092253c12ee49adf8aabdf4ce8e56a1 (patch)
treeb3aea093175cc3f7efc9e8e306e176da44f3202b
parentMerge pull request #5319 from rubencm/ticket/15751 (diff)
downloadphpbb-35d49f515092253c12ee49adf8aabdf4ce8e56a1.tar.gz
phpbb-35d49f515092253c12ee49adf8aabdf4ce8e56a1.tar.bz2
phpbb-35d49f515092253c12ee49adf8aabdf4ce8e56a1.zip
[ticket/15788] Fix return button for Privacy Policy
Change the text from "Return to Login Page" to "Return to Previous page" as the privacy policy can now be accessed through the footer so we could return to any random previous page instead of just the login page. PHPBB3-15788
-rw-r--r--phpBB/ucp.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/ucp.php b/phpBB/ucp.php
index 7eca5ede62..8cc46153b5 100644
--- a/phpBB/ucp.php
+++ b/phpBB/ucp.php
@@ -138,7 +138,7 @@ switch ($mode)
'AGREEMENT_TITLE' => $user->lang[$title],
'AGREEMENT_TEXT' => sprintf($user->lang[$message], $config['sitename'], generate_board_url()),
'U_BACK' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=login'),
- 'L_BACK' => $user->lang['BACK_TO_LOGIN'],
+ 'L_BACK' => $user->lang['BACK_TO_PREV'],
));
page_footer();