@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 Project "Manage" item back

Summary:
Ref T12174. This isn't really a "newManageItem()" since Projects have a separate manage screen.

That is, I incorrectly changed the "Manage [This Project]" item into a "Edit Menu" item, so some options (like "Archive Project") incorrectly became inaccessible.

Test Plan: Viewed a project, saw the right menu item, clicked it, could archive/etc project. Also edited the menu.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T12174

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

+3 -1
+3 -1
src/applications/project/engine/PhabricatorProjectProfileMenuEngine.php
··· 41 41 ->setMenuItemKey( 42 42 PhabricatorProjectSubprojectsProfileMenuItem::MENUITEMKEY); 43 43 44 - $items[] = $this->newManageItem(); 44 + $items[] = $this->newItem() 45 + ->setBuiltinKey(PhabricatorProject::ITEM_MANAGE) 46 + ->setMenuItemKey(PhabricatorProjectManageProfileMenuItem::MENUITEMKEY); 45 47 46 48 return $items; 47 49 }