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

Always show "Change Priority" Maniphest stacked action, even for closed tasks

Summary: Ref T10004.

Test Plan: Changed priority of closed and open tasks.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10004

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

+1 -3
+1 -3
src/applications/maniphest/editor/ManiphestEditEngine.php
··· 66 66 $priority_map = $this->getTaskPriorityMap($object); 67 67 68 68 if ($object->isClosed()) { 69 - $priority_label = null; 70 69 $default_status = ManiphestTaskStatus::getDefaultStatus(); 71 70 } else { 72 - $priority_label = pht('Change Priority'); 73 71 $default_status = ManiphestTaskStatus::getDefaultClosedStatus(); 74 72 } 75 73 ··· 150 148 ->setIsCopyable(true) 151 149 ->setValue($object->getPriority()) 152 150 ->setOptions($priority_map) 153 - ->setCommentActionLabel($priority_label), 151 + ->setCommentActionLabel(pht('Change Priority')), 154 152 id(new PhabricatorRemarkupEditField()) 155 153 ->setKey('description') 156 154 ->setLabel(pht('Description'))