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

Link user name in People log view to user page

Summary:
Looking at IPs who recently registered more than one account in
Phabricator and trying to figure out whether they are spam bots
or just all on the same university network, I often want to check
recent user activity of these accounts. Hence linking the entries
in the User column to their user page comes in handy.

Test Plan: Tested on local instance and works as expected.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: epriestley

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

authored by

Andre Klapper and committed by
epriestley
360597d8 32d660c0

+1 -2
+1 -2
src/applications/people/view/PhabricatorUserLogView.php
··· 33 33 34 34 $rows = array(); 35 35 foreach ($logs as $log) { 36 - 37 36 $ip = $log->getRemoteAddr(); 38 37 $session = substr($log->getSession(), 0, 6); 39 38 ··· 62 61 $log->getActorPHID() 63 62 ? $handles[$log->getActorPHID()]->getName() 64 63 : null, 65 - $handles[$log->getUserPHID()]->getName(), 64 + $username = $handles[$log->getUserPHID()]->renderLink(), 66 65 $ip, 67 66 $session, 68 67 );