Skip to content

Commit

Permalink
MDL-13404 - fix in tag_get_related_tags_csv
Browse files Browse the repository at this point in the history
  • Loading branch information
scyrma committed Feb 25, 2008
1 parent 91e727f commit f866f7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tag/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ function tag_get_related_tags_csv($related_tags, $html=TAG_RETURN_HTML) {
$tags_names[] = rawurlencode(tag_display_name($tag));
} else {
// TAG_RETURN_HTML
$tags_names[] = '<a href="'. $CFG->wwwroot .'/tag/index.php?tag='. rawurlencode($tag->name) .'">'. rawurlencode(tag_display_name($tag)) .'</a>';
$tags_names[] = '<a href="'. $CFG->wwwroot .'/tag/index.php?tag='. rawurlencode($tag->name) .'">'. tag_display_name($tag) .'</a>';
}
}
return implode(', ', $tags_names);
Expand Down

0 comments on commit f866f7b

Please sign in to comment.