@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

Turn off subprojects and milestones in the UI completely for now

Summary: A lot of confusing stuff happens when you create a milestone or subproject which isn't explained clearly in the UI. This is causing more harm than good on the balance since we're still figuring out how to move forward here. Just turn it off for now until we're closer to pushing it forward.

Test Plan: Viewed a project, no more UI for subprojects or milestones.

Reviewers: chad

Reviewed By: chad

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

+1 -2
+1 -2
src/applications/project/controller/PhabricatorProjectController.php
··· 149 149 $nav->addIcon("feed/{$id}/", pht('Feed'), 'fa-newspaper-o'); 150 150 $nav->addIcon("members/{$id}/", pht('Members'), 'fa-group'); 151 151 152 - if (PhabricatorEnv::getEnvConfig('phabricator.show-prototypes')) { 152 + if (false && PhabricatorEnv::getEnvConfig('phabricator.show-prototypes')) { 153 153 if ($project->supportsSubprojects()) { 154 154 $subprojects_icon = 'fa-sitemap'; 155 155 } else { ··· 172 172 pht('Milestones'), 173 173 $milestones_icon); 174 174 } 175 - 176 175 177 176 return $nav; 178 177 }