From 7af180348d1f3de38e2659540019e5c127cd1809 Mon Sep 17 00:00:00 2001 From: Bob Trahan Date: Tue, 16 Jul 2013 13:31:43 -0700 Subject: [PATCH] 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 --- src/view/AphrontJavelinView.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view/AphrontJavelinView.php b/src/view/AphrontJavelinView.php index a563c4aecb..6471f1f951 100644 --- a/src/view/AphrontJavelinView.php +++ b/src/view/AphrontJavelinView.php @@ -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, ));