@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 construction of "View Tasks" URI from user profiles

Summary: Fixes T4995. This uses commas so it shouldn't have `[]`. I think I just derped this a while ago.

Test Plan: fiddled

Reviewers: btrahan, chad

Reviewed By: chad

Subscribers: epriestley

Maniphest Tasks: T4995

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

+1 -1
+1 -1
src/applications/maniphest/event/ManiphestActionMenuEventListener.php
··· 33 33 $user = $event->getValue('object'); 34 34 $phid = $user->getPHID(); 35 35 $view_uri = sprintf( 36 - '/maniphest/?statuses[]=%s&assigned=%s#R', 36 + '/maniphest/?statuses=%s&assigned=%s#R', 37 37 implode(',', ManiphestTaskStatus::getOpenStatusConstants()), 38 38 $phid); 39 39