@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.

Audit - fix profile link

Summary: forgot to update this with new application search.

Test Plan: verified "View Commits" took me to my commits and the commits of another user from respective profile pages.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

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

+3 -3
+1 -1
src/applications/audit/events/AuditActionMenuEventListener.php
··· 33 33 $user = $event->getValue('object'); 34 34 35 35 $username = phutil_escape_uri($user->getUsername()); 36 - $view_uri = '/audit/view/author/'.$username.'/'; 36 + $view_uri = '/audit/?authors='.$username; 37 37 38 38 return id(new PhabricatorActionView()) 39 39 ->setIcon('audit-dark')
+2 -2
src/applications/audit/query/PhabricatorCommitSearchEngine.php
··· 12 12 13 13 $saved->setParameter( 14 14 'commitAuthorPHIDs', 15 - $this->readUsersFromRequest($request, 'commitAuthorPHIDs')); 15 + $this->readUsersFromRequest($request, 'authors')); 16 16 17 17 $saved->setParameter( 18 18 'auditStatus', ··· 88 88 ->appendChild( 89 89 id(new AphrontFormTokenizerControl()) 90 90 ->setDatasource('/typeahead/common/users/') 91 - ->setName('commitAuthorPHIDs') 91 + ->setName('authors') 92 92 ->setLabel(pht('Commit Authors')) 93 93 ->setValue(array_select_keys($handles, $commit_author_phids))) 94 94 ->appendChild(