From f12cafb275ea16903d5d5edeb3b9e46b9f7b2667 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 2 Aug 2010 17:56:44 -0700 Subject: [PATCH] correct output for EndActivityInReplyTo event --- classes/Notice.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Notice.php b/classes/Notice.php index 592e2f3842..f6e9eb585d 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -1391,7 +1391,7 @@ class Notice extends Memcached_DataObject $xs->element('thr:in-reply-to', array('ref' => $replyNotice->uri, 'href' => $replyNotice->bestUrl())); - Event::handle('EndActivityInReplyTo', array(&$this, &$xs, $replyUri, $replyUrl)); + Event::handle('EndActivityInReplyTo', array(&$this, &$xs, $replyNotice)); } }