showReplyTo() update
This commit is contained in:
parent
442dcfde0e
commit
46b1e2fcec
@ -389,11 +389,15 @@ class NoticeListItem
|
|||||||
if ($this->notice->reply_to) {
|
if ($this->notice->reply_to) {
|
||||||
$replyurl = common_local_url('shownotice',
|
$replyurl = common_local_url('shownotice',
|
||||||
array('notice' => $this->notice->reply_to));
|
array('notice' => $this->notice->reply_to));
|
||||||
common_text(' (');
|
$this->elementStart('dl', 'response');
|
||||||
common_element('a', array('class' => 'inreplyto',
|
$this->element('dt', null, _('To'));
|
||||||
|
$this->elementStart('dd');
|
||||||
|
$this->element('a', array('class' => 'inreplyto',
|
||||||
'href' => $replyurl),
|
'href' => $replyurl),
|
||||||
_('in reply to...'));
|
'rel' => 'in-reply-to',
|
||||||
common_text(')');
|
_('in reply to'));
|
||||||
|
$this->elementEnd('dd');
|
||||||
|
$this->elementEnd('dl');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user