@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Swap "Description" and "Invitees / Details" on Calendar event views

Summary:
Ref T11326. This reorders sections:

- Description (if present)
- Recurring event series info (if recurring)
- Invitees (this also has custom stuff, if it exists)

Test Plan: Viewed some events, saw more sensible order.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11326

Differential Revision: https://secure.phabricator.com/D16671

+2 -2
+2 -2
src/applications/calendar/controller/PhabricatorCalendarEventViewController.php
··· 72 72 $comment_view, 73 73 )) 74 74 ->setCurtain($curtain) 75 - ->addPropertySection($details_header, $details) 75 + ->addPropertySection(pht('Description'), $description) 76 76 ->addPropertySection($recurring_header, $recurring) 77 - ->addPropertySection(pht('Description'), $description); 77 + ->addPropertySection($details_header, $details); 78 78 79 79 return $this->newPage() 80 80 ->setTitle($page_title)