From: Mikael Nordfeldth Date: Wed, 4 Jun 2014 21:21:37 +0000 (+0200) Subject: Repeats were not delivered a conversation ID X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a490d634db3bcd4edc2cb455287ed4c4008d0c44;p=quix0rs-gnu-social.git Repeats were not delivered a conversation ID Vinilox noticed that replies to repeats ended up outside of the original notice's conversations. --- diff --git a/classes/Notice.php b/classes/Notice.php index 461e8f9aab..c6ae3c9155 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -507,7 +507,8 @@ class Notice extends Managed_DataObject throw new ClientException(_('You already repeated that notice.')); } - $notice->repeat_of = $repeat_of; + $notice->repeat_of = $repeat->id; + $notice->conversation = $repeat->conversation; } else { $reply = null;