From 113bb2a26b7015bd02d9609c36c718f5064e9dbb Mon Sep 17 00:00:00 2001 From: moodler Date: Fri, 11 Oct 2002 05:20:23 +0000 Subject: [PATCH] Better placing of standard links etc when there are lots of images and other funny formatting in HTML posts --- mod/forum/lib.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/mod/forum/lib.php b/mod/forum/lib.php index f361f6e7c1..004962035e 100644 --- a/mod/forum/lib.php +++ b/mod/forum/lib.php @@ -126,7 +126,7 @@ function forum_make_mail_post(&$post, $user, $touser, $course, $output .= format_text($post->message, $post->format); - $output .= "

"; + $output .= "

"; $age = time() - $post->created; if ($ownpost) { @@ -141,6 +141,7 @@ function forum_make_mail_post(&$post, $user, $touser, $course, } } + $output .= "

"; $output .= "

"; if ($link) { @@ -213,7 +214,7 @@ function forum_print_post(&$post, $courseid, $ownpost=false, $reply=false, $link echo format_text($post->message, $post->format); } - echo "

"; + echo "

"; $age = time() - $post->created; if ($ownpost) { @@ -233,7 +234,7 @@ function forum_print_post(&$post, $courseid, $ownpost=false, $reply=false, $link echo "wwwroot/mod/forum/post.php?reply=$post->id\">".get_string("reply", "forum").""; echo "  "; } - + echo "

"; echo "

"; if ($rate && $USER->id) { -- 2.39.5