show lists as a comma-separated list in sidebar

This commit is contained in:
Evan Prodromou 2011-04-14 17:03:10 -04:00
parent 90e6eab68e
commit c8a58c924b
1 changed files with 8 additions and 2 deletions

View File

@ -304,6 +304,8 @@ class ProfileAction extends OwnerDesignAction
$cur = common_current_user();
$first = true;
while ($lists->fetch()) {
if (!$lists->private ||
($lists->private && !empty($cur) && $cur->id == $profile->id)) {
@ -314,10 +316,14 @@ class ProfileAction extends OwnerDesignAction
array('tagger' => $this->profile->nickname,
'tag' => $lists->tag));
}
$this->elementStart('li');
if (!$first) {
$this->text(', ');
} else {
$first = false;
}
$this->element('a', array('href' => $url),
$lists->tag);
$this->elementEnd('li');
}
}