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:
@@ -31,7 +31,10 @@ final class PhabricatorFileLinkListView extends AphrontView {
|
||||
$file_links[] = $view->render();
|
||||
}
|
||||
|
||||
return implode('<br />', $file_links);
|
||||
return $this->renderHTMLView(
|
||||
array_interleave(
|
||||
phutil_tag('br'),
|
||||
$file_links));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user