X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fsubscriptionlist.php;h=3ca4603948004536195bca3e04d828dc68df743d;hb=1d29ba83150bdd7a23e497ca9a743ac2b6158b6f;hp=fc8f33f2ecee3524caccf5456421379ebf445fb6;hpb=2b3a2e6b6d0e50a8723fd970bc8d23eb1378d2ea;p=quix0rs-gnu-social.git diff --git a/lib/subscriptionlist.php b/lib/subscriptionlist.php index fc8f33f2ec..3ca4603948 100644 --- a/lib/subscriptionlist.php +++ b/lib/subscriptionlist.php @@ -98,8 +98,6 @@ class SubscriptionListItem extends ProfileListItem { $tags = Profile_tag::getTags($this->owner->id, $this->profile->id); - $this->out->elementStart('dl', 'entity_tags'); - $this->out->elementStart('dt'); if ($this->isOwn()) { $this->out->element('a', array('href' => common_local_url('tagother', array('id' => $this->profile->id))), @@ -107,10 +105,8 @@ class SubscriptionListItem extends ProfileListItem } else { $this->out->text(_('Tags')); } - $this->out->elementEnd('dt'); - $this->out->elementStart('dd'); if ($tags) { - $this->out->elementStart('ul', 'tags xoxo'); + $this->out->elementStart('ul', 'tags xoxo entity_tags'); foreach ($tags as $tag) { $this->out->elementStart('li'); // Avoid space by using raw output. @@ -126,7 +122,5 @@ class SubscriptionListItem extends ProfileListItem } else { $this->out->text(_('(None)')); } - $this->out->elementEnd('dd'); - $this->out->elementEnd('dl'); } }