X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fgroupminilist.php;h=8212b81b17965f57e2dbd31f6ef86c721b9b300b;hb=c00b2ecc4b34c00c4a0cdd092c9346611d9157c0;hp=8e3d2a70ce0bde59327f0b9ae654429c9ebb09ac;hpb=7d64d8c78cfa102b91975598ef9e574d2ef14b8c;p=quix0rs-gnu-social.git diff --git a/lib/groupminilist.php b/lib/groupminilist.php index 8e3d2a70ce..8212b81b17 100644 --- a/lib/groupminilist.php +++ b/lib/groupminilist.php @@ -33,8 +33,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { require_once INSTALLDIR.'/lib/grouplist.php'; -define('GROUPS_PER_MINILIST', 8); - /** * Widget to show a list of groups, good for sidebar * @@ -67,13 +65,11 @@ class GroupMiniList extends GroupList function showGroup() { - $this->out->elementStart('li', 'vcard'); - $this->out->elementStart('a', array('title' => ($this->group->fullname) ? - $this->group->fullname : - $this->group->nickname, + $this->out->elementStart('li', 'h-card'); + $this->out->elementStart('a', array('title' => $this->group->getBestName(), 'href' => $this->group->homeUrl(), 'rel' => 'contact group', - 'class' => 'url')); + 'class' => 'p-name u-url org')); $logo = ($this->group->mini_logo) ? $this->group->mini_logo : User_group::defaultLogo(AVATAR_MINI_SIZE); @@ -82,10 +78,7 @@ class GroupMiniList extends GroupList 'width' => AVATAR_MINI_SIZE, 'height' => AVATAR_MINI_SIZE, 'class' => 'avatar photo', - 'alt' => ($this->group->fullname) ? - $this->group->fullname : - $this->group->nickname)); - $this->out->element('span', 'fn org nickname', $this->group->nickname); + 'alt' => $this->group->getBestName())); $this->out->elementEnd('a'); $this->out->elementEnd('li'); }