From: stronk7 Date: Wed, 4 Feb 2009 16:40:26 +0000 (+0000) Subject: MDL-18129 blog_print_entry() - avoid double format_text() ; merged from 19_STABLE X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=522f26f1581295c5afc877c8557277ff25d72ddb;p=moodle.git MDL-18129 blog_print_entry() - avoid double format_text() ; merged from 19_STABLE --- diff --git a/blog/lib.php b/blog/lib.php index 7b84e5ca75..8d9026375c 100755 --- a/blog/lib.php +++ b/blog/lib.php @@ -220,7 +220,7 @@ echo '
'.$blogtype.'
'; // Print whole message - echo format_text($template['body']); + echo $template['body']; /// Print attachments echo $attachedimages;