@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 bad NUX link in Legalpad search view

Summary:
See <https://discourse.phabricator-community.org/t/clicking-the-create-a-document-button-on-fresly-installed-phabricators-legalpad-results-in-404/1088>.

This URI isn't correct.

Test Plan: Visited {nav Use Results > New User State} in developer mode, clicked green button. Before: 404. After: taken to the edit screen.

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

+1 -1
+1 -1
src/applications/legalpad/query/LegalpadDocumentSearchEngine.php
··· 176 176 $create_button = id(new PHUIButtonView()) 177 177 ->setTag('a') 178 178 ->setText(pht('Create a Document')) 179 - ->setHref('/legalpad/create/') 179 + ->setHref('/legalpad/edit/') 180 180 ->setColor(PHUIButtonView::GREEN); 181 181 182 182 $icon = $this->getApplication()->getIcon();