]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fixes #1241: in-reply-to links were broken due to copy and paste error (Variable...
authorAdrian Lang <mail@adrianlang.de>
Sun, 22 Feb 2009 12:38:16 +0000 (13:38 +0100)
committerEvan Prodromou <evan@controlyourself.ca>
Fri, 27 Feb 2009 23:43:10 +0000 (15:43 -0800)
actions/noticesearch.php

index dc58d7528ae315c61c4f58a26bc841d9dc3a4772..0bbaa02560ecc3e171e3f17bf714236f44d43e5e 100644 (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');