mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-06 15:45:34 +02:00
Fix HTML span color bug #507545
git-svn-id: file:///svn/phpbb/trunk@1929 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
8a983e23a0
commit
12863932df
@ -128,12 +128,12 @@ while( $row = $db->sql_fetchrow($result) )
|
||||
if( $row['user_level'] == ADMIN )
|
||||
{
|
||||
$row['username'] = '<b>' . $row['username'] . '</b>';
|
||||
$style_color = 'style="color:' . $theme['fontcolor3'] . '"';
|
||||
$style_color = 'style="color:#' . $theme['fontcolor3'] . '"';
|
||||
}
|
||||
else if( $row['user_level'] == MOD )
|
||||
{
|
||||
$row['username'] = '<b>' . $row['username'] . '</b>';
|
||||
$style_color = 'style="color:' . $theme['fontcolor2'] . '"';
|
||||
$style_color = 'style="color:#' . $theme['fontcolor2'] . '"';
|
||||
}
|
||||
|
||||
if( $row['user_allow_viewonline'] )
|
||||
|
Loading…
x
Reference in New Issue
Block a user