@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.

Fix an issue with recurrence rules being set improperly in transaction code

Summary: Fixes T11745. I just missed this while juggling some of the internal storage.

Test Plan: Created a new event with recurrence behavior.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11745

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

+1 -2
+1 -2
src/applications/calendar/xaction/PhabricatorCalendarEventFrequencyTransaction.php
··· 19 19 $rrule = id(new PhutilCalendarRecurrenceRule()) 20 20 ->setFrequency($value); 21 21 22 - $dict = $rrule->toDictionary(); 23 - $object->setRecurrenceRule($dict); 22 + $object->setRecurrenceRule($rrule); 24 23 } 25 24 26 25 public function validateTransactions($object, array $xactions) {