forked from GNUsocial/gnu-social
don't show reply for anon user
This commit is contained in:
parent
e37e9c2084
commit
d86622da33
@ -440,19 +440,21 @@ class NoticeListItem extends Widget
|
|||||||
|
|
||||||
function showReplyLink()
|
function showReplyLink()
|
||||||
{
|
{
|
||||||
$reply_url = common_local_url('newnotice',
|
if (common_logged_in()) {
|
||||||
array('replyto' => $this->profile->nickname));
|
$reply_url = common_local_url('newnotice',
|
||||||
|
array('replyto' => $this->profile->nickname));
|
||||||
|
|
||||||
$this->out->elementStart('dl', 'notice_reply');
|
$this->out->elementStart('dl', 'notice_reply');
|
||||||
$this->out->element('dt', null, _('Reply to this notice'));
|
$this->out->element('dt', null, _('Reply to this notice'));
|
||||||
$this->out->elementStart('dd');
|
$this->out->elementStart('dd');
|
||||||
$this->out->elementStart('a', array('href' => $reply_url,
|
$this->out->elementStart('a', array('href' => $reply_url,
|
||||||
'title' => _('Reply to this notice')));
|
'title' => _('Reply to this notice')));
|
||||||
$this->out->text(_('Reply'));
|
$this->out->text(_('Reply'));
|
||||||
$this->out->element('span', 'notice_id', $this->notice->id);
|
$this->out->element('span', 'notice_id', $this->notice->id);
|
||||||
$this->out->elementEnd('a');
|
$this->out->elementEnd('a');
|
||||||
$this->out->elementEnd('dd');
|
$this->out->elementEnd('dd');
|
||||||
$this->out->elementEnd('dl');
|
$this->out->elementEnd('dl');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user