mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Avoid double escaping in renderLink()
Summary: ##phutil_render_tag()## escapes attributes automatically Test Plan: View any diff Reviewers: epriestley Reviewed By: epriestley CC: aran, epriestley, vrana Differential Revision: https://secure.phabricator.com/D1271
This commit is contained in:
parent
682fb6f519
commit
a83a54004d
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ class PhabricatorObjectHandle {
|
|||
|
||||
$class = null;
|
||||
if ($this->status != PhabricatorObjectHandleStatus::STATUS_OPEN) {
|
||||
$class = 'handle-status-'.phutil_escape_html($this->status);
|
||||
$class = 'handle-status-'.$this->status;
|
||||
}
|
||||
|
||||
return phutil_render_tag(
|
||||
|
|
Loading…
Reference in a new issue