|
@@ -160,9 +160,11 @@ $encoded_artist = urlencode($encoded_artist);
|
160
|
160
|
<div class="box box_tags">
|
161
|
161
|
<div class="head"><strong>Tags</strong></div>
|
162
|
162
|
<ul class="stats nobullet">
|
163
|
|
-<? foreach ($Request['Tags'] as $TagID => $TagName) { ?>
|
|
163
|
+<? foreach ($Request['Tags'] as $TagID => $TagName) {
|
|
164
|
+ $Split = Tags::get_name_and_class($TagName);
|
|
165
|
+?>
|
164
|
166
|
<li>
|
165
|
|
- <a href="torrents.php?taglist=<?=$TagName?>"><?=display_str($TagName)?></a>
|
|
167
|
+ <a class="<?=$Split['class']?>" href="torrents.php?taglist=<?=$TagName?>"><?=display_str($Split['name'])?></a>
|
166
|
168
|
<br style="clear: both;" />
|
167
|
169
|
</li>
|
168
|
170
|
<? } ?>
|