mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-27 09:12:41 +01:00
Fix double escaping on PhabricatorFileLinkListView
Summary: Fallout from D4822. Test Plan: {F32108} Reviewers: chad, btrahan, vrana Reviewed By: chad CC: aran Differential Revision: https://secure.phabricator.com/D4879
This commit is contained in:
parent
2cc1da20e7
commit
1190e0516f
1 changed files with 4 additions and 1 deletions
|
@ -31,7 +31,10 @@ final class PhabricatorFileLinkListView extends AphrontView {
|
||||||
$file_links[] = $view->render();
|
$file_links[] = $view->render();
|
||||||
}
|
}
|
||||||
|
|
||||||
return implode('<br />', $file_links);
|
return $this->renderHTMLView(
|
||||||
|
array_interleave(
|
||||||
|
phutil_tag('br'),
|
||||||
|
$file_links));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue