]> git.mjollnir.org Git - moodle.git/commitdiff
blog should print rawname instead of name of the tag
authortoyomoyo <toyomoyo>
Mon, 27 Aug 2007 09:21:31 +0000 (09:21 +0000)
committertoyomoyo <toyomoyo>
Mon, 27 Aug 2007 09:21:31 +0000 (09:21 +0000)
blog/lib.php

index 7c5b164fe6705322953ce22622990c833551846b..42ff8db33a5d6b61307e20d5d88dd7ea7e0c5c6f 100755 (executable)
                 print_string('tags');
                 echo ': ';
                 foreach ($blogtags as $key => $blogtag) {
-                    $taglist[] = '<a href="index.php?filtertype='.$filtertype.'&amp;filterselect='.$filterselect.'&amp;tagid='.$blogtag->id.'">'.$blogtag->name.'</a>';
+                    $taglist[] = '<a href="index.php?filtertype='.$filtertype.'&amp;filterselect='.$filterselect.'&amp;tagid='.$blogtag->id.'">'.tag_display_name($blogtag).'</a>';
                 }
                 echo implode(', ', $taglist);
             }