]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/groupminilist.php
Bug tracker link updated.
[quix0rs-gnu-social.git] / lib / groupminilist.php
index 8e3d2a70ce0bde59327f0b9ae654429c9ebb09ac..ca7f8775c60dd0d2895868091be29e237d2c963e 100644 (file)
@@ -67,13 +67,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 +80,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');
     }