From 15ebb814955ab69bd4d4d598b7f0535444e11461 Mon Sep 17 00:00:00 2001 From: lkassianik Date: Sun, 3 May 2015 15:29:42 -0700 Subject: [PATCH] Calendar event detail page should show host. Summary: Ref T8027, Calendar event deatil page should show host. Test Plan: Open calendar event, property list should include the host. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, epriestley Maniphest Tasks: T8027 Differential Revision: https://secure.phabricator.com/D12683 --- .../controller/PhabricatorCalendarEventViewController.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/applications/calendar/controller/PhabricatorCalendarEventViewController.php b/src/applications/calendar/controller/PhabricatorCalendarEventViewController.php index 32ca36f306..3f8fcf6b88 100644 --- a/src/applications/calendar/controller/PhabricatorCalendarEventViewController.php +++ b/src/applications/calendar/controller/PhabricatorCalendarEventViewController.php @@ -201,6 +201,10 @@ final class PhabricatorCalendarEventViewController $invitee_list->addItem($item); } + $properties->addProperty( + pht('Host'), + $viewer->renderHandle($event->getUserPHID())); + $properties->addProperty( pht('Invitees'), $invitee_list);