|
From: Paul S. O. <ps...@us...> - 2002-01-24 02:59:24
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv13253/includes
Modified Files:
page_header.php
Log Message:
Fix HTML span color bug #507545
Index: page_header.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/page_header.php,v
retrieving revision 1.89
retrieving revision 1.90
diff -C2 -r1.89 -r1.90
*** page_header.php 2002/01/16 17:15:02 1.89
--- page_header.php 2002/01/24 02:59:21 1.90
***************
*** 129,138 ****
{
$row['username'] = '<b>' . $row['username'] . '</b>';
! $style_color = 'style="color:' . $theme['fontcolor3'] . '"';
}
else if( $row['user_level'] == MOD )
{
$row['username'] = '<b>' . $row['username'] . '</b>';
! $style_color = 'style="color:' . $theme['fontcolor2'] . '"';
}
--- 129,138 ----
{
$row['username'] = '<b>' . $row['username'] . '</b>';
! $style_color = 'style="color:#' . $theme['fontcolor3'] . '"';
}
else if( $row['user_level'] == MOD )
{
$row['username'] = '<b>' . $row['username'] . '</b>';
! $style_color = 'style="color:#' . $theme['fontcolor2'] . '"';
}
|