mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 13:28:55 +00: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
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue