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

Put "View Edit History" above "Remove Comment" in timeline comment action dropdown

Summary: Fixes T12131.

Test Plan: {F2449700}

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T12131

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

authored by

epriestley and committed by
chad
98a29f3d 58c857a6

+8 -8
+8 -8
src/view/phui/PHUITimelineEventView.php
··· 646 646 } 647 647 } 648 648 649 + if ($this->getIsEdited()) { 650 + $items[] = id(new PhabricatorActionView()) 651 + ->setIcon('fa-list') 652 + ->setHref('/transactions/history/'.$xaction_phid.'/') 653 + ->setName(pht('View Edit History')) 654 + ->setWorkflow(true); 655 + } 656 + 649 657 if ($this->getIsRemovable()) { 650 658 $items[] = id(new PhabricatorActionView()) 651 659 ->setType(PhabricatorActionView::TYPE_DIVIDER); ··· 661 669 'anchor' => $anchor, 662 670 )); 663 671 664 - } 665 - 666 - if ($this->getIsEdited()) { 667 - $items[] = id(new PhabricatorActionView()) 668 - ->setIcon('fa-list') 669 - ->setHref('/transactions/history/'.$xaction_phid.'/') 670 - ->setName(pht('View Edit History')) 671 - ->setWorkflow(true); 672 672 } 673 673 674 674 return $items;