diff --git a/src/applications/maniphest/controller/transactionsave/ManiphestTransactionSaveController.php b/src/applications/maniphest/controller/transactionsave/ManiphestTransactionSaveController.php index c4c22c61b8..5d4acf31ea 100644 --- a/src/applications/maniphest/controller/transactionsave/ManiphestTransactionSaveController.php +++ b/src/applications/maniphest/controller/transactionsave/ManiphestTransactionSaveController.php @@ -75,7 +75,8 @@ class ManiphestTransactionSaveController extends ManiphestController { array($task->getOwnerPHID())); $new = array_unique(array_filter($new)); if ($old != $new) { - $cc = clone $transaction; + $cc = new ManiphestTransaction(); + $cc->setAuthorPHID($user->getPHID()); $cc->setTransactionType(ManiphestTransactionType::TYPE_CCS); $cc->setNewValue($new); $transactions[] = $cc;