1
0

Updated DisplayTags to fix tag hyperlink issue.

This commit is contained in:
rWatcher 2010-01-10 01:54:22 -05:00
parent f97fe8d8c1
commit cf81ac7085

View File

@ -3,6 +3,6 @@
<? $not_first = 0; ?>
<? foreach ($tags as $tag): ?>
<?= ($not_first++) ? "," : "" ?>
<a href="<?= url::site("tags/{$tag->name}") ?>"><?= html::clean($tag->name) ?></a>
<a href="<?= $tag->url() ?>"><?= html::clean($tag->name) ?></a>
<? endforeach ?>
</div>