mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
Fix for bug 73, invalid link under PM icon in memberlist/leaders
git-svn-id: file:///svn/phpbb/trunk@5218 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
8a728e1014
commit
95a323733f
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ switch ($mode)
|
|||
|
||||
'U_GROUP' => $u_group,
|
||||
'U_VIEWPROFILE' => "{$phpbb_root_path}memberlist.$phpEx$SID&mode=viewprofile&u={$row['user_id']}",
|
||||
'U_PM' => ($auth->acl_get('u_sendpm')) ? "{$phpbb_root_path}ucp.$phpEx$SID&i=pm&mode=compose&u=$user_id" : '')
|
||||
'U_PM' => ($auth->acl_get('u_sendpm')) ? "{$phpbb_root_path}ucp.$phpEx$SID&i=pm&mode=compose&u={$row['user_id']}" : '')
|
||||
);
|
||||
}
|
||||
$db->sql_freeresult($result);
|
||||
|
|
Loading…
Add table
Reference in a new issue