@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 broken link for project creating button

Summary: fix T10074

Test Plan: click the "create project" button

Reviewers: joshuaspence, #blessed_reviewers, epriestley

Reviewed By: joshuaspence, #blessed_reviewers, epriestley

Subscribers: joshuaspence, epriestley

Maniphest Tasks: T10074

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

+1 -10
-9
src/applications/diffusion/controller/DiffusionCommitEditController.php
··· 47 47 ->setName('projects') 48 48 ->setValue($current_proj_phids) 49 49 ->setID($tokenizer_id) 50 - ->setCaption( 51 - javelin_tag( 52 - 'a', 53 - array( 54 - 'href' => '/project/create/', 55 - 'mustcapture' => true, 56 - 'sigil' => 'project-create', 57 - ), 58 - pht('Create New Project'))) 59 50 ->setDatasource(new PhabricatorProjectDatasource())); 60 51 61 52 $reason = $data->getCommitDetail('autocloseReason', false);
+1 -1
src/applications/project/query/PhabricatorProjectSearchEngine.php
··· 180 180 $create_button = id(new PHUIButtonView()) 181 181 ->setTag('a') 182 182 ->setText(pht('Create a Project')) 183 - ->setHref('/project/create/') 183 + ->setHref('/project/edit/') 184 184 ->setColor(PHUIButtonView::GREEN); 185 185 186 186 $icon = $this->getApplication()->getFontIcon();