@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 dynamic string usage as safe input in phutil_tag

Test Plan:
$ arc lint

Reviewers: epriestley

CC: aran, Korvin

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

vrana 8e7af64d 87dc4641

+3 -2
+3 -2
src/applications/differential/field/specification/DifferentialLintFieldSpecification.php
··· 110 110 'style' => $this->getSeverityStyle($severity), 111 111 'name' => ucwords($severity), 112 112 'value' => hsprintf( 113 - "(%s) %s at {$line_link}", 113 + '(%s) %s at %s', 114 114 $code, 115 - $name), 115 + $name, 116 + $line_link), 116 117 'show' => $show, 117 118 ); 118 119