summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
Diffstat (limited to 'actions')
-rw-r--r--actions/showstream.php7
-rw-r--r--actions/tagother.php2
2 files changed, 7 insertions, 2 deletions
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');
diff --git a/actions/tagother.php b/actions/tagother.php
index ed9d7c80d..f95724152 100644
--- a/actions/tagother.php
+++ b/actions/tagother.php
@@ -88,7 +88,7 @@ class TagotherAction extends Action {
}
common_element_start('form', array('method' => 'post',
- 'id' => 'tagother',
+ 'id' => 'tag_user',
'name' => 'tagother',
'action' => $this->self_url()));
common_hidden('token', common_session_token());