diff --git a/src/applications/calendar/controller/PhabricatorCalendarEventViewController.php b/src/applications/calendar/controller/PhabricatorCalendarEventViewController.php --- a/src/applications/calendar/controller/PhabricatorCalendarEventViewController.php +++ b/src/applications/calendar/controller/PhabricatorCalendarEventViewController.php @@ -46,12 +46,19 @@ } else if ($sequence) { return new Aphront404Response(); } - } - $title = 'E'.$event->getID(); - $page_title = $title.' '.$event->getName(); - $crumbs = $this->buildApplicationCrumbs(); - $crumbs->addTextCrumb($title, '/E'.$event->getID()); + $title = $event->getMonogram().' ('.$sequence.')'; + $page_title = $title.' '.$event->getName(); + $crumbs = $this->buildApplicationCrumbs(); + $crumbs->addTextCrumb($title, '/'.$event->getMonogram().'/'.$sequence); + + + } else { + $title = 'E'.$event->getID(); + $page_title = $title.' '.$event->getName(); + $crumbs = $this->buildApplicationCrumbs(); + $crumbs->addTextCrumb($title, '/E'.$event->getID()); + } $timeline = $this->buildTransactionTimeline( $event,