forked from GNUsocial/gnu-social
Fixes #1241: in-reply-to links were broken due to copy and paste error (Variable name was wrong).
This commit is contained in:
parent
210647a56c
commit
d005b37071
@ -201,7 +201,7 @@ class NoticesearchAction extends SearchAction
|
|||||||
|
|
||||||
if ($notice->reply_to) {
|
if ($notice->reply_to) {
|
||||||
$replyurl = common_local_url('shownotice',
|
$replyurl = common_local_url('shownotice',
|
||||||
array('notice' => $this->notice->reply_to));
|
array('notice' => $notice->reply_to));
|
||||||
$this->elementStart('dl', 'response');
|
$this->elementStart('dl', 'response');
|
||||||
$this->element('dt', null, _('To'));
|
$this->element('dt', null, _('To'));
|
||||||
$this->elementStart('dd');
|
$this->elementStart('dd');
|
||||||
|
Loading…
Reference in New Issue
Block a user