diff --git a/html/inc/forum.inc b/html/inc/forum.inc index b82dcbd90c..72092a0d99 100644 --- a/html/inc/forum.inc +++ b/html/inc/forum.inc @@ -288,7 +288,7 @@ function show_post($post, $thread, $logged_in_user, $n, $controls=FORUM_CONTROLS $posttext = output_transform($posttext,$options); - echo "
", $posttext, "
", $posttext, "
"; echo "ID: ", $post->id; diff --git a/html/inc/forum_show.inc b/html/inc/forum_show.inc index 05f73f26c7..3b057e5226 100644 --- a/html/inc/forum_show.inc +++ b/html/inc/forum_show.inc @@ -120,13 +120,13 @@ function show_forum($category, $forum, $start, $sort_style, $logged_in_user) { } echo " | "; } - $titlelength = 42; // The answer to Life, the Universe, and Everything - // ...and it makes the forum look better + + $titlelength = 48; $title = cleanup_title($thread->title); if (strlen($title) > $titlelength) { $title = substr($title,0,$titlelength)."..."; } - echo "id, "\">", $title, " "; + echo " id, "\">", $title, " | ";
+ echo ""; $n = ($n+1)%2; if ($category->is_helpdesk) { @@ -138,22 +138,22 @@ function show_forum($category, $forum, $start, $sort_style, $logged_in_user) { echo " Asked $x; asked $na times"; } - echo " | ";
$x = time_diff_str($thread->timestamp, time());
if ($category->is_helpdesk) {
if ($thread->replies == 0) $x = "---";
- echo "
+ echo "
Total: $thread->replies
|
+ Last: $x - |
";
} else {
echo "
- ", $thread->replies+1, " |
- ", user_links($user), " |
- ", $thread->views, " |
- ", $x, " |
+ ", $thread->replies+1, " | ++ | ", $thread->views, " | +", $x, " | "; }