1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-22 08:30:26 +01:00

[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
This commit is contained in:
Jim Mossing Holsteyn 2018-09-23 03:01:09 +02:00 committed by Marc Alexander
parent 2769ab701a
commit 35d49f5150
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -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();