From e22df4be30edbdad436c36df13fba38d1ca35467 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 9 Jul 2008 16:23:46 -0400 Subject: reply_to is now stored on the notice, not on the reply record darcs-hash:20080709202346-84dde-63561db24b55e98020c00707cc2c36e46bb8025f.gz --- lib/stream.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/stream.php') diff --git a/lib/stream.php b/lib/stream.php index 58ac6e5d5..65d67d92d 100644 --- a/lib/stream.php +++ b/lib/stream.php @@ -57,7 +57,7 @@ class StreamAction extends Action { common_element_end('ul'); } - function show_notice($notice, $replied_id=NULL) { + function show_notice($notice) { global $config; $profile = $notice->getProfile(); # XXX: RDFa @@ -93,12 +93,12 @@ class StreamAction extends Action { 'href' => $noticeurl, 'title' => common_exact_date($notice->created)), common_date_string($notice->created)); - if ($replied_id) { - $replyurl = common_local_url('shownotice', array('notice' => $replied_id)); - common_text('('); + if ($notice->reply_to) { + $replyurl = common_local_url('shownotice', array('notice' => $notice->reply_to)); + common_text(' ('); common_element('a', array('class' => 'inreplyto', 'href' => $replyurl), - _t(' in reply to...')); + _t('in reply to...')); common_text(')'); } common_element_start('a', -- cgit v1.2.3-54-g00ecf