@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 URI for Phurl NUX

Summary: Fixes T11685. We missed this one straggler the recent conversion of Phurl to EditEngine, in T10673.

Test Plan: Visited `/phurl/?nux=1`, clicked "Shorten a URL".

Reviewers: chad, jcox

Reviewed By: jcox

Maniphest Tasks: T11685

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

+4 -1
+4 -1
src/applications/phurl/query/PhabricatorPhurlURLSearchEngine.php
··· 99 99 } 100 100 101 101 protected function getNewUserBody() { 102 + $create_uri = id(new PhabricatorPhurlURLEditEngine()) 103 + ->getEditURI(); 104 + 102 105 $create_button = id(new PHUIButtonView()) 103 106 ->setTag('a') 104 107 ->setText(pht('Shorten a URL')) 105 - ->setHref('/phurl/url/create/') 108 + ->setHref($create_uri) 106 109 ->setColor(PHUIButtonView::GREEN); 107 110 108 111 $icon = $this->getApplication()->getIcon();