mirror of
https://git.code.sf.net/p/quake/website
synced 2025-01-31 04:30:44 +00:00
haha! my name _won't_ be capitalized now!
This commit is contained in:
parent
914414696b
commit
0fc09e5d32
2 changed files with 2 additions and 1 deletions
|
@ -33,7 +33,7 @@
|
|||
tableTitle("Add News", 1, tableHeadColor);
|
||||
|
||||
$date = strftime('%d %b %Y', time());
|
||||
$user = $userInfo[u_username] ;
|
||||
$user = ucfirst($userInfo[u_username]);
|
||||
echo '<TR><TD><DL><DT><FONT SIZE=-1>Posted on ' . $date . ' by ' . $user . '</FONT></DT>' .
|
||||
' <DD> ';
|
||||
?>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?
|
||||
function newsItem( $date, $user, $text )
|
||||
{
|
||||
if ($user == "Theoddone33") $user = "theoddone33";:ZZZZ
|
||||
echo '<TR><TD><DL><DT><FONT SIZE=-1>Posted on ' . $date . ' by ' . $user . '</FONT></DT>' .
|
||||
' <DD>' . $text . '</DD>' .
|
||||
'</DL></TD></TR>';
|
||||
|
|
Loading…
Reference in a new issue