From: toyomoyo Date: Mon, 27 Aug 2007 09:21:31 +0000 (+0000) Subject: blog should print rawname instead of name of the tag X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=833dcdea9f0629a42a03b631559fb3e61a7aeb2c;p=moodle.git blog should print rawname instead of name of the tag --- diff --git a/blog/lib.php b/blog/lib.php index 7c5b164fe6..42ff8db33a 100755 --- a/blog/lib.php +++ b/blog/lib.php @@ -233,7 +233,7 @@ print_string('tags'); echo ': '; foreach ($blogtags as $key => $blogtag) { - $taglist[] = ''.$blogtag->name.''; + $taglist[] = ''.tag_display_name($blogtag).''; } echo implode(', ', $taglist); }