diff --git a/ext/tag_list/main.php b/ext/tag_list/main.php index 814faff4..51a46ed9 100644 --- a/ext/tag_list/main.php +++ b/ext/tag_list/main.php @@ -118,7 +118,9 @@ class TagList implements Extension { $h_tag = html_escape($row['tag']); $size = $row['scaled']; $link = $this->tag_link($row['tag']); - $html .= " $h_tag \n"; + if($size<0.5) $size = 0.5; + $h_tag_no_underscores = str_replace("_", " ", $h_tag); + $html .= " $h_tag_no_underscores \n"; } return $html; }