Added one missing format_string() to post->subject

Merged from MOODLE_17_STABLE
This commit is contained in:
stronk7
2006-12-20 10:00:02 +00:00
parent 447ca67d35
commit 47c9c8f5dd
+1 -1
View File
@@ -1948,7 +1948,7 @@ function forum_print_post(&$post, $courseid, $ownpost=false, $reply=false, $link
echo '<td class="topic starter">';
}
echo '<div class="subject">'.$post->subject.'</div>';
echo '<div class="subject">'.format_string($post->subject).'</div>';
echo '<div class="author">';
$fullname = fullname($post, has_capability('moodle/site:viewfullnames', $modcontext));