From d653b125b52633f0978e66223f0af573a328e38d Mon Sep 17 00:00:00 2001 From: Chad Little Date: Tue, 8 Mar 2016 07:26:56 -0800 Subject: [PATCH] Add back calendar comment form Summary: Fix T10544, missed this in testing. Test Plan: Pull up event, see form, leave comment. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T10544 Differential Revision: https://secure.phabricator.com/D15437 --- .../controller/PhabricatorCalendarEventViewController.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/applications/calendar/controller/PhabricatorCalendarEventViewController.php b/src/applications/calendar/controller/PhabricatorCalendarEventViewController.php index eb435a42e9..5880db1210 100644 --- a/src/applications/calendar/controller/PhabricatorCalendarEventViewController.php +++ b/src/applications/calendar/controller/PhabricatorCalendarEventViewController.php @@ -89,7 +89,10 @@ final class PhabricatorCalendarEventViewController $view = id(new PHUITwoColumnView()) ->setHeader($header) - ->setMainColumn($timeline) + ->setMainColumn(array( + $timeline, + $add_comment_form, + )) ->setCurtain($curtain) ->addPropertySection(pht('DETAILS'), $details) ->addPropertySection(pht('DESCRIPTION'), $description);