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

Creating a recurring event should save it as a recurring event.

Summary: Fixes T8551, Creating a recurring event should save it as a recurring event

Test Plan: Before patch: -create an event -flag as recurring -save -Result: event is not recurring -After patch Result: event saves as recurring.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T8551

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

+2 -2
+2 -2
src/applications/calendar/controller/PhabricatorCalendarEventEditController.php
··· 191 191 PhabricatorCalendarEventTransaction::TYPE_NAME) 192 192 ->setNewValue($name); 193 193 194 - if ($is_parent && $this->isCreate()) { 194 + if ($is_recurring && $this->isCreate()) { 195 195 $xactions[] = id(new PhabricatorCalendarEventTransaction()) 196 196 ->setTransactionType( 197 197 PhabricatorCalendarEventTransaction::TYPE_RECURRING) ··· 210 210 } 211 211 } 212 212 213 - if (($is_parent && $this->isCreate()) || !$is_parent) { 213 + if (($is_recurring && $this->isCreate()) || !$is_parent) { 214 214 $xactions[] = id(new PhabricatorCalendarEventTransaction()) 215 215 ->setTransactionType( 216 216 PhabricatorCalendarEventTransaction::TYPE_ALL_DAY)