1
0
Fork 0
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:
vrana 2011-12-22 13:45:16 -08:00
parent 682fb6f519
commit a83a54004d

View file

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