diff options
author | PayBas <contact@paybas.com> | 2014-10-14 12:58:07 +0200 |
---|---|---|
committer | PayBas <contact@paybas.com> | 2014-10-14 12:58:07 +0200 |
commit | 4bdae294cbd8f423f44dfdf8e594a1afd328465d (patch) | |
tree | bea23d2372dd8cd58738601d2471ffe75be49fab | |
parent | 253c6e1fc1ad6b9b7ac9d210af8e17a59df161e4 (diff) | |
download | forums-4bdae294cbd8f423f44dfdf8e594a1afd328465d.tar forums-4bdae294cbd8f423f44dfdf8e594a1afd328465d.tar.gz forums-4bdae294cbd8f423f44dfdf8e594a1afd328465d.tar.bz2 forums-4bdae294cbd8f423f44dfdf8e594a1afd328465d.tar.xz forums-4bdae294cbd8f423f44dfdf8e594a1afd328465d.zip |
[ticket/12796] Use & in path
PHPBB3-12796
-rw-r--r-- | phpBB/memberlist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php index 872114905e..e3ac8dad51 100644 --- a/phpBB/memberlist.php +++ b/phpBB/memberlist.php @@ -681,7 +681,7 @@ switch ($mode) 'U_MCP_QUEUE' => ($auth->acl_getf_global('m_approve')) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=queue', true, $user->session_id) : '', 'U_SWITCH_PERMISSIONS' => ($auth->acl_get('a_switchperm') && $user->data['user_id'] != $user_id) ? append_sid("{$phpbb_root_path}ucp.$phpEx", "mode=switch_perm&u={$user_id}&hash=" . generate_link_hash('switchperm')) : '', - 'U_EDIT_SELF' => ($user_id == $user->data['user_id']) ? append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=ucp_profile&mode=profile_info') : '', + 'U_EDIT_SELF' => ($user_id == $user->data['user_id']) ? append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=ucp_profile&mode=profile_info') : '', 'S_USER_NOTES' => ($user_notes_enabled) ? true : false, 'S_WARN_USER' => ($warn_user_enabled) ? true : false, |