If user has fn, then it will not link to their own profile with @class
'fn'. Only put @class 'fn' on the anchor if there is no fn.
This commit is contained in:
parent
caeb74c9a5
commit
1ab0de3ddd
|
@ -243,9 +243,10 @@ class ShowstreamAction extends Action
|
|||
$this->elementStart('dl', 'user_nickname');
|
||||
$this->element('dt', null, _('Nickname'));
|
||||
$this->elementStart('dd');
|
||||
$this->element('a', array('href' => $this->profile->profileurl,
|
||||
'rel' => 'me', 'class' => 'nickname url uid'),
|
||||
$this->profile->nickname);
|
||||
$hasFN = ($this->profile->fullname) ? 'nickname url uid' : 'fn nickname url uid';
|
||||
$this->element('a', array('href' => $this->profile->profileurl,
|
||||
'rel' => 'me', 'class' => $hasFN),
|
||||
$this->profile->nickname);
|
||||
$this->elementEnd('dd');
|
||||
$this->elementEnd('dl');
|
||||
|
||||
|
|
|
@ -87,7 +87,7 @@ class ProfileList extends Widget
|
|||
|
||||
function showProfile()
|
||||
{
|
||||
$this->out->elementStart('li', array('class' => 'profile vcard',
|
||||
$this->out->elementStart('li', array('class' => 'profile',
|
||||
'id' => 'profile-' . $this->profile->id));
|
||||
|
||||
$user = common_current_user();
|
||||
|
|
Loading…
Reference in New Issue
Block a user