minor opt-in class to style

This commit is contained in:
Shish 2015-01-25 06:55:37 +00:00
parent eae385f4c0
commit 0d2d7eedd7

View file

@ -180,11 +180,11 @@ class TagList extends Extension {
ORDER BY SCORE_STRNORM(substr(tag, 1, 1)) ORDER BY SCORE_STRNORM(substr(tag, 1, 1))
"), array("tags_min"=>$tags_min)); "), array("tags_min"=>$tags_min));
$html = ""; $html = "<span class='atoz'>";
foreach($tag_data as $a) { foreach($tag_data as $a) {
$html .= " <a href='".modify_current_url(array("starts_with"=>$a))."'>$a</a>"; $html .= " <a href='".modify_current_url(array("starts_with"=>$a))."'>$a</a>";
} }
$html .= "<p><hr>"; $html .= "</span>\n<p><hr>";
return $html; return $html;
} }