mirror of https://github.com/BOINC/boinc.git
Backing out css anti-overflow attempt
svn path=/trunk/boinc/; revision=6175
This commit is contained in:
parent
6bc836ef5f
commit
d5e7202d80
|
@ -288,7 +288,7 @@ function show_post($post, $thread, $logged_in_user, $n, $controls=FORUM_CONTROLS
|
||||||
|
|
||||||
$posttext = output_transform($posttext,$options);
|
$posttext = output_transform($posttext,$options);
|
||||||
|
|
||||||
echo "<div class=\"cellwrap\" width=\"100%\"><p>", $posttext, "</p></div>";
|
echo "<p>", $posttext, "</p>";
|
||||||
echo "<table width=\"100%\" cellspacing=0 cellpadding=0>
|
echo "<table width=\"100%\" cellspacing=0 cellpadding=0>
|
||||||
<tr valign=\"bottom\">
|
<tr valign=\"bottom\">
|
||||||
<td style=\"border:0px;\"><font size=-2><i>ID: ", $post->id;
|
<td style=\"border:0px;\"><font size=-2><i>ID: ", $post->id;
|
||||||
|
|
|
@ -120,13 +120,13 @@ function show_forum($category, $forum, $start, $sort_style, $logged_in_user) {
|
||||||
}
|
}
|
||||||
echo "</nobr></td>";
|
echo "</nobr></td>";
|
||||||
}
|
}
|
||||||
$titlelength = 42; // The answer to Life, the Universe, and Everything
|
|
||||||
// ...and it makes the forum look better
|
$titlelength = 48;
|
||||||
$title = cleanup_title($thread->title);
|
$title = cleanup_title($thread->title);
|
||||||
if (strlen($title) > $titlelength) {
|
if (strlen($title) > $titlelength) {
|
||||||
$title = substr($title,0,$titlelength)."...";
|
$title = substr($title,0,$titlelength)."...";
|
||||||
}
|
}
|
||||||
echo "<td style=\"font-size:10pt; text-align:left\"><div class=\"cellwrap\"><a href=\"forum_thread.php?id=", $thread->id, "\"><b>", $title, "</b></a><br>";
|
echo "<td style=\"font-size:10pt; text-align:left\"><a href=\"forum_thread.php?id=", $thread->id, "\"><b>", $title, "</b></a><br>";
|
||||||
$n = ($n+1)%2;
|
$n = ($n+1)%2;
|
||||||
|
|
||||||
if ($category->is_helpdesk) {
|
if ($category->is_helpdesk) {
|
||||||
|
@ -138,22 +138,22 @@ function show_forum($category, $forum, $start, $sort_style, $logged_in_user) {
|
||||||
echo "<br><font size=-2>Asked $x; asked $na times";
|
echo "<br><font size=-2>Asked $x; asked $na times";
|
||||||
}
|
}
|
||||||
|
|
||||||
echo "</div></td>";
|
echo "</td>";
|
||||||
$x = time_diff_str($thread->timestamp, time());
|
$x = time_diff_str($thread->timestamp, time());
|
||||||
|
|
||||||
if ($category->is_helpdesk) {
|
if ($category->is_helpdesk) {
|
||||||
if ($thread->replies == 0) $x = "---";
|
if ($thread->replies == 0) $x = "---";
|
||||||
echo "<td align=left><div class=\"cellwrap\">
|
echo "<td align=left>
|
||||||
Total: $thread->replies
|
Total: $thread->replies
|
||||||
<br>Last: $x
|
<br>Last: $x
|
||||||
</div></td>
|
</td>
|
||||||
";
|
";
|
||||||
} else {
|
} else {
|
||||||
echo "
|
echo "
|
||||||
<td><div class=\"cellwrap\">", $thread->replies+1, "</div></td>
|
<td>", $thread->replies+1, "</td>
|
||||||
<td align=left><div class=\"cellwrap\">", user_links($user), "</div></td>
|
<td align=left><div class=\"authorcol\">", user_links($user), "</div></td>
|
||||||
<td><div class=\"cellwrap\">", $thread->views, "</div></td>
|
<td>", $thread->views, "</td>
|
||||||
<td style=\"text-align:right\"><div class=\"cellwrap\">", $x, "</div></td>
|
<td style=\"text-align:right\">", $x, "</td>
|
||||||
";
|
";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue