haha! my name _won't_ be capitalized now!

This commit is contained in:
Dan Olson 2000-05-15 00:44:38 +00:00
parent 914414696b
commit 0fc09e5d32
2 changed files with 2 additions and 1 deletions

View file

@ -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> ';
?>

View file

@ -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>';