diff options
author | Jim Mossing Holsteyn <jim@beta-garden.com> | 2018-09-23 03:01:09 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2018-10-10 22:42:41 +0200 |
commit | 35d49f515092253c12ee49adf8aabdf4ce8e56a1 (patch) | |
tree | b3aea093175cc3f7efc9e8e306e176da44f3202b | |
parent | 2769ab701a9a1a537454a7490a4aa233b76c70b8 (diff) | |
download | forums-35d49f515092253c12ee49adf8aabdf4ce8e56a1.tar forums-35d49f515092253c12ee49adf8aabdf4ce8e56a1.tar.gz forums-35d49f515092253c12ee49adf8aabdf4ce8e56a1.tar.bz2 forums-35d49f515092253c12ee49adf8aabdf4ce8e56a1.tar.xz forums-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.php | 2 |
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(); |