From: Adrian Lang Date: Sun, 22 Feb 2009 12:38:16 +0000 (+0100) Subject: Fixes #1241: in-reply-to links were broken due to copy and paste error (Variable... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d005b370712943eed3edae2ff82d38dfa3d42a92;p=quix0rs-gnu-social.git Fixes #1241: in-reply-to links were broken due to copy and paste error (Variable name was wrong). --- diff --git a/actions/noticesearch.php b/actions/noticesearch.php index dc58d7528a..0bbaa02560 100644 --- a/actions/noticesearch.php +++ b/actions/noticesearch.php @@ -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');