From: stronk7 Date: Wed, 20 Dec 2006 10:00:02 +0000 (+0000) Subject: Added one missing format_string() to post->subject X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=47c9c8f5dd6a03b32df135df4634adeb7a38e1ca;p=moodle.git Added one missing format_string() to post->subject Merged from MOODLE_17_STABLE --- diff --git a/mod/forum/lib.php b/mod/forum/lib.php index 6ad9b0a64e..202b7b252b 100644 --- a/mod/forum/lib.php +++ b/mod/forum/lib.php @@ -1948,7 +1948,7 @@ function forum_print_post(&$post, $courseid, $ownpost=false, $reply=false, $link echo ''; } - echo '
'.$post->subject.'
'; + echo '
'.format_string($post->subject).'
'; echo '
'; $fullname = fullname($post, has_capability('moodle/site:viewfullnames', $modcontext));