From 6bdedfe679fa580627b3110a07db32686dd2dabc Mon Sep 17 00:00:00 2001 From: Chad Little Date: Tue, 29 Oct 2013 14:54:10 -0700 Subject: [PATCH] Add ObjectBox to Condiut Cert Page Summary: adds a box, Fixes T4033 Test Plan: look at box Reviewers: epriestley Reviewed By: epriestley CC: Korvin, epriestley, aran Maniphest Tasks: T4033 Differential Revision: https://secure.phabricator.com/D7437 --- .../controller/PhabricatorConduitTokenController.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/applications/conduit/controller/PhabricatorConduitTokenController.php b/src/applications/conduit/controller/PhabricatorConduitTokenController.php index 694671a0dc..b750d60d4c 100644 --- a/src/applications/conduit/controller/PhabricatorConduitTokenController.php +++ b/src/applications/conduit/controller/PhabricatorConduitTokenController.php @@ -53,10 +53,14 @@ final class PhabricatorConduitTokenController id(new PhabricatorCrumbView()) ->setName(pht('Install Certificate'))); + $object_box = id(new PHUIObjectBoxView()) + ->setHeaderText(pht('Certificate Token')) + ->setForm($form); + return $this->buildApplicationPage( array( $crumbs, - $form, + $object_box, ), array( 'title' => pht('Certificate Install Token'),