@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix assign-on-close behavior for comment controller

Summary: Ref T2217. Missed this while converting this endpoint.

Test Plan: Closed an unassigned task, got assigned.

Reviewers: btrahan

Reviewed By: btrahan

CC: aran

Maniphest Tasks: T2217

Differential Revision: https://secure.phabricator.com/D7089

+1 -1
+1 -1
src/applications/maniphest/controller/ManiphestTransactionSaveController.php
··· 165 165 ManiphestTaskStatus::STATUS_OPEN) { 166 166 // Closing an unassigned task. Assign the user as the owner of 167 167 // this task. 168 - $assign = new ManiphestTransaction(); 168 + $assign = new ManiphestTransactionPro(); 169 169 $assign->setTransactionType(ManiphestTransactionType::TYPE_OWNER); 170 170 $assign->setNewValue($user->getPHID()); 171 171 $transactions[] = $assign;