Fix tag links in tag clouds. MDL-14547 ; merged from 19_STABLE

This commit is contained in:
stronk7 2008-04-24 16:45:58 +00:00
parent 5448c13d41
commit 5a620a8c2a

View File

@ -60,7 +60,7 @@ function tag_print_cloud($nr_of_tags=150, $return=false) {
$tagname = tag_display_name($tag);
}
$link = $CFG->wwwroot .'/tag/index.php?tag='. rawurlencode($tag->name) .'"';
$link = $CFG->wwwroot .'/tag/index.php?tag='. rawurlencode($tag->name);
$output .= '<li><a href="'. $link .'" class="'. $tag->class .'" '.
'title="'. get_string('numberofentries', 'blog', $tag->count) .'">'.
$tagname .'</a></li> ';