Skip to content

Commit 8e7af64

Browse files
author
vrana
committedFeb 3, 2013
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
1 parent 87dc464 commit 8e7af64

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎src/applications/differential/field/specification/DifferentialLintFieldSpecification.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,10 @@ public function renderValueForRevisionView() {
110110
'style' => $this->getSeverityStyle($severity),
111111
'name' => ucwords($severity),
112112
'value' => hsprintf(
113-
"(%s) %s at {$line_link}",
113+
'(%s) %s at %s',
114114
$code,
115-
$name),
115+
$name,
116+
$line_link),
116117
'show' => $show,
117118
);
118119

0 commit comments

Comments
 (0)
Failed to load comments.