Repeats were not delivered a conversation ID

Vinilox noticed that replies to repeats ended up outside of the original
notice's conversations.
This commit is contained in:
Mikael Nordfeldth 2014-06-04 23:21:37 +02:00
parent 90cc6b4d3b
commit a490d634db
1 changed files with 2 additions and 1 deletions

View File

@ -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;