diff options
author | Marc Alexander <admin@m-a-styles.de> | 2018-05-31 22:15:36 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2018-05-31 22:15:36 +0200 |
commit | 25a46ef4b3a79ff87f3ac9bf6b52fa97363809b6 (patch) | |
tree | e05ace690a399927c27e899d34bc969827e88e38 /phpBB/includes/functions.php | |
parent | c6a35237a23d8d1e2ca7af72c5f31a42cad6df41 (diff) | |
download | forums-25a46ef4b3a79ff87f3ac9bf6b52fa97363809b6.tar forums-25a46ef4b3a79ff87f3ac9bf6b52fa97363809b6.tar.gz forums-25a46ef4b3a79ff87f3ac9bf6b52fa97363809b6.tar.bz2 forums-25a46ef4b3a79ff87f3ac9bf6b52fa97363809b6.tar.xz forums-25a46ef4b3a79ff87f3ac9bf6b52fa97363809b6.zip |
[ticket/15676] Simplify link text and use privacy link in cookie notice
PHPBB3-15676
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index aeba5b74c0..24642faade 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2471,6 +2471,7 @@ function login_box($redirect = '', $l_explain = '', $l_success = '', $admin = fa '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'), + 'UA_PRIVACY' => addslashes(append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=privacy')), 'S_DISPLAY_FULL_LOGIN' => ($s_display) ? true : false, 'S_HIDDEN_FIELDS' => $s_hidden_fields, @@ -4426,6 +4427,7 @@ function page_header($page_title = '', $display_online_list = false, $item_id = 'U_TEAM' => ($user->data['user_id'] != ANONYMOUS && !$auth->acl_get('u_viewprofile')) ? '' : append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=team'), 'U_TERMS_USE' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=terms'), 'U_PRIVACY' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=privacy'), + 'UA_PRIVACY' => addslashes(append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=privacy')), 'U_RESTORE_PERMISSIONS' => ($user->data['user_perm_from'] && $auth->acl_get('a_switchperm')) ? append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=restore_perm') : '', 'U_FEED' => $controller_helper->route('phpbb_feed_index'), |