Small fix from David Hammer. When viewing the forums, there's a formatting problem with people who have the tag "New Member" and do not have an avatar in their profile. The forums are not seperating the "New Member" line and the start date so they are showing as "New memberJoined: Jan 22, 2005".

svn path=/trunk/boinc/; revision=5212
This commit is contained in:
Bruce Allen 2005-01-26 07:09:14 +00:00
parent 556741fa8c
commit 001790f103
1 changed files with 1 additions and 2 deletions

View File

@ -518,8 +518,7 @@ function show_post($post, $thread, $logged_in_user, $n, $controls=FORUM_CONTROLS
if (isSpecialUser($user,$i)) $fstatus.=$special_user_bitfield[$i]."<br>";
}
} else {
if ($user->create_time>time()-ST_NEW_TIME) $fstatus=ST_NEW;
echo "<br>";
if ($user->create_time>time()-ST_NEW_TIME) $fstatus=ST_NEW."<br>";
/*...*/
}
if ($fstatus) echo "<br><font size=\"-2\">$fstatus</font>";