Fixes #1241: in-reply-to links were broken due to copy and paste error (Variable name was wrong).

This commit is contained in:
Adrian Lang 2009-02-22 13:38:16 +01:00 committed by Evan Prodromou
parent 210647a56c
commit d005b37071

View File

@ -201,7 +201,7 @@ class NoticesearchAction extends SearchAction
if ($notice->reply_to) {
$replyurl = common_local_url('shownotice',
array('notice' => $this->notice->reply_to));
array('notice' => $notice->reply_to));
$this->elementStart('dl', 'response');
$this->element('dt', null, _('To'));
$this->elementStart('dd');