1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-03 19:31:02 +01:00

Partial fix for Javelin View Example

Summary: Ref T3544. For starters, we now need to phutil_implode_html

Test Plan: no more fatals

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Maniphest Tasks: T3544

Differential Revision: https://secure.phabricator.com/D6475
This commit is contained in:
Bob Trahan 2013-07-16 13:31:43 -07:00
parent df264d8548
commit 7af180348d

View file

@ -32,7 +32,7 @@ final class AphrontJavelinView extends AphrontView {
'id' => $id,
'view' => $this->getName(),
'params' => $this->getParameters(),
'children' => implode('', $this->renderChildren()),
'children' => phutil_implode_html('', $this->renderChildren()),
'trigger_id' => $render_context,
));