]> git.mjollnir.org Git - moodle.git/commitdiff
Changes for XHTML compatibility
authormoodler <moodler>
Thu, 7 Oct 2004 11:24:31 +0000 (11:24 +0000)
committermoodler <moodler>
Thu, 7 Oct 2004 11:24:31 +0000 (11:24 +0000)
blocks/news_items/block_news_items.php

index be9190a80c9aa3b189c3b98cab496e9e8bfecaf6..1d4869ef420114aa7b781b7ef6a0f93bcca77726 100644 (file)
@@ -31,9 +31,7 @@ class CourseBlock_news_items extends MoodleBlock {
             $news = forum_get_course_forum($this->course->id, 'news');
             // Slightly hacky way to do it but...
             ob_start();
-            echo '<font size="-2">';
             forum_print_latest_discussions($news->id, $this->course->newsitems, "minimal", "", get_current_group($this->course->id));
-            echo '</font>';
             $this->content->text = ob_get_contents();
             ob_end_clean();
         }