diff options
author | Robin Millette <millette@plantard.controlezvous.ca> | 2009-01-22 04:22:50 +0000 |
---|---|---|
committer | Robin Millette <millette@plantard.controlezvous.ca> | 2009-01-22 04:22:50 +0000 |
commit | 205eb386c542502f39e0df1f4544c10a87d91b4b (patch) | |
tree | 48ce8bce829e92f75b305621e056f7c3243b1c70 /lib/groupminilist.php | |
parent | 7f25b9db4bce69e076ab6447a4070d1cb7c3651a (diff) | |
parent | 07b52e19beff39a7f7cb5de4ebb199f2d894ad08 (diff) |
Merge branch 'master' of /var/www/trunk
Diffstat (limited to 'lib/groupminilist.php')
-rw-r--r-- | lib/groupminilist.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/groupminilist.php b/lib/groupminilist.php index e4d4c68fd..fe38d0340 100644 --- a/lib/groupminilist.php +++ b/lib/groupminilist.php @@ -49,7 +49,7 @@ class GroupMiniList extends GroupList { function show() { - $this->out->elementStart('ul', 'groups'); + $this->out->elementStart('ul', 'entities groups xoxo'); $cnt = 0; @@ -73,7 +73,7 @@ class GroupMiniList extends GroupList $this->group->fullname : $this->group->nickname, 'href' => $this->group->homeUrl(), - 'rel' => 'contact', + 'rel' => 'contact group', 'class' => 'url')); $logo = ($this->group->stream_logo) ? $this->group->stream_logo : User_group::defaultLogo(AVATAR_STREAM_SIZE); @@ -85,7 +85,7 @@ class GroupMiniList extends GroupList 'alt' => ($this->group->fullname) ? $this->group->fullname : $this->group->nickname)); - $this->out->element('span', 'fn nickname', $this->group->nickname); + $this->out->element('span', 'fn org nickname', $this->group->nickname); $this->out->elementEnd('a'); $this->out->elementEnd('li'); } |