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.
Details
Details
- Reviewers
epriestley - Group Reviewers
Blessed Reviewers - Commits
- rP360597d8eea5: Link user name in People log view to user page
Tested on local instance and works as expected.
Diff Detail
Diff Detail
- Repository
- rP Phabricator
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
Comment Actions
Possibly simpler fix inline?
src/applications/people/view/PhabricatorUserLogView.php | ||
---|---|---|
64 | If you just change this line like this, does that also work? - $handles[$log->getUserPHID()]->getName(), + $handles[$log->getUserPHID()]->renderLink(), |
Comment Actions
Indeed, that one-liner works (nice API).
Thanks for the extremely fast feedback, as usual!