]> git.mjollnir.org Git - moodle.git/commitdiff
Fix tag links in tag clouds. MDL-14547 ; merged from 19_STABLE
authorstronk7 <stronk7>
Thu, 24 Apr 2008 16:45:58 +0000 (16:45 +0000)
committerstronk7 <stronk7>
Thu, 24 Apr 2008 16:45:58 +0000 (16:45 +0000)
tag/locallib.php

index e2c26d533088ea59c68e6959e0aa5b909967fb26..934d3c8bc0f2bbf2ca8df4ee77d07c99bfd82308 100644 (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> ';