
i need on my forum to avoid normal users to get their nicknames in bold
so i delete from functions_colorgroups de bold style it haves
but now i want to add bold style for admins & mods
so i try to change this part
$user_link = '<a href="' . append_sid($phpbb_root_path."profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$user_id") . '"' . $style_color .'>' . $username . '</a>';
if ( ($row['user_level'] == ADMIN) && ($row['user_level'] == MOD) )
{
$user_link = '<b><a href="' . append_sid($phpbb_root_path."profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$user_id") . '"' . $style_color .'>' . $username . '</a></b>';
}
if ( ($row['user_level'] == ADMIN) && ($row['user_level'] == MOD) )
{
$user_link = '<b><a href="' . append_sid($phpbb_root_path."profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$user_id") . '"' . $style_color .'>' . $username . '</a></b>';
}
is there anything i'm missing? there seems to be no problem with the code, but admins & mods aren't listed "bold" :S
thank u!