From: moodler Date: Sun, 8 Feb 2004 09:48:48 +0000 (+0000) Subject: Use format_text to print text so that filters work X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=0437ab95c675cf68bf2b22533c2d61ed6bc6322c;p=moodle.git Use format_text to print text so that filters work --- diff --git a/mod/dialogue/view.php b/mod/dialogue/view.php index c289fd20a4..244090a04b 100644 --- a/mod/dialogue/view.php +++ b/mod/dialogue/view.php @@ -64,7 +64,7 @@ /************ view **************************************************/ elseif ($action == 'view') { - print_simple_box( text_to_html($dialogue->intro) , "center"); + print_simple_box( format_text($dialogue->intro) , "center"); echo "
"; // get some stats $countneedingrepliesself = dialogue_count_needing_replies_self($dialogue, $USER);