show best name in noticelistitem

This commit is contained in:
Evan Prodromou 2011-04-16 11:22:46 -04:00
parent 0925b96840
commit b3e7838552
1 changed files with 9 additions and 8 deletions

View File

@ -202,20 +202,21 @@ class NoticeListItem extends Widget
*
* @return void
*/
function showAuthor()
{
$this->out->elementStart('span', 'vcard author');
$this->out->elementStart('div', 'vcard author');
$attrs = array('href' => $this->profile->profileurl,
'class' => 'url');
if (!empty($this->profile->fullname)) {
$attrs['title'] = $this->profile->getFancyName();
}
'class' => 'url',
'title' => $this->profile->nickname);
$this->out->elementStart('a', $attrs);
$this->showAvatar();
$this->out->text(' ');
$this->showNickname();
$this->out->elementEnd('a');
$this->out->elementEnd('span');
$this->out->element('a', array('href' => $this->profile->profileurl,
'class' => 'url nickname fn',
'title' => $this->profile->nickname),
$this->profile->getBestName());
$this->out->elementEnd('div');
}
/**