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:
Bart van Bragt 2005-09-21 11:50:54 +00:00
parent 8a728e1014
commit 95a323733f

View file

@ -152,7 +152,7 @@ switch ($mode)
'U_GROUP' => $u_group, 'U_GROUP' => $u_group,
'U_VIEWPROFILE' => "{$phpbb_root_path}memberlist.$phpEx$SID&mode=viewprofile&u={$row['user_id']}", '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); $db->sql_freeresult($result);