diff options
author | Adrian Lang <mail@adrianlang.de> | 2009-02-22 13:38:16 +0100 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-02-27 15:43:10 -0800 |
commit | d005b370712943eed3edae2ff82d38dfa3d42a92 (patch) | |
tree | cff53a97a28d0fc488da0669a8860336e2eeaf4b /actions/noticesearch.php | |
parent | 210647a56c0ee917ec5bb7d4753ad2603d28d7c4 (diff) |
Fixes #1241: in-reply-to links were broken due to copy and paste error (Variable name was wrong).
Diffstat (limited to 'actions/noticesearch.php')
-rw-r--r-- | actions/noticesearch.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/noticesearch.php b/actions/noticesearch.php index dc58d7528..0bbaa0256 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'); |