X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fgrouplist.php;h=99bff9cdc031769b31e74960703111388148fcfe;hb=69ac99ff949ab0118ff25a62471980ad0ec7a52b;hp=d9547acb995049132da8a0cc5a3dcfdfafdfa89b;hpb=87543292d18409e7b4f3c4876172d414d39183fd;p=quix0rs-gnu-social.git diff --git a/lib/grouplist.php b/lib/grouplist.php index d9547acb99..99bff9cdc0 100644 --- a/lib/grouplist.php +++ b/lib/grouplist.php @@ -85,18 +85,18 @@ class GroupList extends Widget function showGroup() { - $this->out->elementStart('li', array('class' => 'profile', + $this->out->elementStart('li', array('class' => 'profile hentry', 'id' => 'group-' . $this->group->id)); $user = common_current_user(); - $this->out->elementStart('div', 'entity_profile vcard'); + $this->out->elementStart('div', 'entity_profile vcard entry-content'); $logo = ($this->group->stream_logo) ? $this->group->stream_logo : User_group::defaultLogo(AVATAR_STREAM_SIZE); $this->out->elementStart('a', array('href' => $this->group->homeUrl(), - 'class' => 'url', + 'class' => 'url entry-title', 'rel' => 'contact group')); $this->out->element('img', array('src' => $logo, 'class' => 'photo avatar', @@ -119,6 +119,7 @@ class GroupList extends Widget if ($this->group->location) { $this->out->elementStart('span', 'label'); $this->out->raw($this->highlight($this->group->location)); + $this->out->elementEnd('span'); } if ($this->group->homepage) { $this->out->elementStart('a', array('href' => $this->group->homepage,