Fixed Popular Tags List

All the links pointed to /post/list/$link
This commit is contained in:
Justin Brewer 2012-02-27 17:37:09 -06:00
parent 9e394957b6
commit 8f49922556

View File

@ -89,7 +89,7 @@ class TagListTheme extends Themelet {
$html .= ' <a class="tag_info_link" href="'.$link.'">?</a>'; $html .= ' <a class="tag_info_link" href="'.$link.'">?</a>';
} }
$link = $this->tag_link($row['tag']); $link = $this->tag_link($row['tag']);
$html .= ' <a class="tag_name" href="$link">'.$h_tag_no_underscores.'</a>'; $html .= ' <a class="tag_name" href="'.$link.'">'.$h_tag_no_underscores.'</a>';
if($tag_list_num) { if($tag_list_num) {
$html .= ' <span class="tag_count">'.$count.'</span>'; $html .= ' <span class="tag_count">'.$count.'</span>';
} }