summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-04-08 00:32:28 -0400
committerEvan Prodromou <evan@controlyourself.ca>2009-04-08 00:32:28 -0400
commit154e8bb858516e4c37427d837b506a48f1131b01 (patch)
tree16d409f5466a00cd10a538081c2517fb49511620
parentb8bfc8beaede4977573a978f825231347bf91385 (diff)
use mini logo at mini size, not stream logo
-rw-r--r--lib/groupminilist.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/groupminilist.php b/lib/groupminilist.php
index e8d3a4e3a..ae2d237f1 100644
--- a/lib/groupminilist.php
+++ b/lib/groupminilist.php
@@ -75,8 +75,9 @@ class GroupMiniList extends GroupList
'href' => $this->group->homeUrl(),
'rel' => 'contact group',
'class' => 'url'));
- $logo = ($this->group->stream_logo) ?
- $this->group->stream_logo : User_group::defaultLogo(AVATAR_STREAM_SIZE);
+
+ $logo = ($this->group->mini_logo) ?
+ $this->group->mini_logo : User_group::defaultLogo(AVATAR_MINI_SIZE);
$this->out->element('img', array('src' => $logo,
'width' => AVATAR_MINI_SIZE,