@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 escaping, which should actually be "%s", not "%p"

See <https://discourse.phabricator-community.org/t/projects-workboards-links-issue/2896>.

The documentation on `urisprintf()` isn't very clear here, I'll update it in
a followup. "%p" is for cases like encoding a branch name (which may contain
slashes) as a single path component in a URI.

+1 -1
+1 -1
src/applications/project/state/PhabricatorWorkboardViewState.php
··· 103 103 104 104 public function newWorkboardURI($path = null) { 105 105 $project = $this->getProject(); 106 - $uri = urisprintf('%p%p', $project->getWorkboardURI(), $path); 106 + $uri = urisprintf('%s%s', $project->getWorkboardURI(), $path); 107 107 return $this->newURI($uri); 108 108 } 109 109