mirror of https://github.com/BOINC/boinc.git
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:
parent
556741fa8c
commit
001790f103
|
@ -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>";
|
||||
|
|
Loading…
Reference in New Issue