From ca8f45fc6ea609450de75afc3438d9c43c42a7bb Mon Sep 17 00:00:00 2001 From: csarven Date: Thu, 20 Nov 2008 21:38:27 -0500 Subject: Tag markup and styling for tag_self, tag_user, form#tag_user darcs-hash:20081121023827-eefa4-ed91f63cac35c078dc385546a69209cbef2a0d5e.gz --- actions/showstream.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'actions/showstream.php') diff --git a/actions/showstream.php b/actions/showstream.php index 419c4421a..b9ab699d3 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -355,12 +355,17 @@ class ShowstreamAction extends StreamAction { common_element('dt', 'tags', _('Tags')); common_element_start('dd', 'tags'); $tags = Profile_tag::getTags($profile->id, $profile->id); + + common_element_start('ul', 'tags xoxo'); foreach ($tags as $tag) { - common_element('a', array('rel' => 'tag', + common_element_start('li'); + common_element('a', array('rel' => 'bookmark tag', 'href' => common_local_url('peopletag', array('tag' => $tag))), $tag); + common_element_end('li'); } + common_element_end('ul'); common_element_end('dd'); common_element_end('dl'); -- cgit v1.2.3-54-g00ecf