From: Evan Prodromou Date: Wed, 9 Jul 2008 20:27:16 +0000 (-0400) Subject: store replies on the notice record, not the reply record X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=cbe07c1d37d0bf0edf9a448cc1c3c58676304af7;p=quix0rs-gnu-social.git store replies on the notice record, not the reply record darcs-hash:20080709202716-84dde-30ffe46b711ff108fa210757eeb856803b09de82.gz --- diff --git a/lib/util.php b/lib/util.php index 1a83f0fffa..d529b91095 100644 --- a/lib/util.php +++ b/lib/util.php @@ -872,15 +872,14 @@ function common_save_replies($notice) { } if ($i == 0) { $reply_for = $recipient; + $recipient_notice = $reply_for->getCurrentNotice(); + $orig = clone($notice); + $notice->reply_to = $recipient_notice->id; + $notice->update($orig); } $reply = new Reply(); $reply->notice_id = $notice->id; $reply->profile_id = $recipient->id; - if ($reply_for) { -# $recipient_notice = $reply_for->getCurrentNotice($notice->created); - $recipient_notice = $reply_for->getCurrentNotice(); - $reply->replied_id = $recipient_notice->id; - } $id = $reply->insert(); if (!$id) { $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');