Page MenuHomePhabricator

D13089.id31588.diff
No OneTemporary

D13089.id31588.diff

diff --git a/src/applications/calendar/controller/PhabricatorCalendarEventEditController.php b/src/applications/calendar/controller/PhabricatorCalendarEventEditController.php
--- a/src/applications/calendar/controller/PhabricatorCalendarEventEditController.php
+++ b/src/applications/calendar/controller/PhabricatorCalendarEventEditController.php
@@ -112,7 +112,7 @@
$invitees = $event->getInvitees();
- $new_ghost = $event->generateNthGhost($index, $viewer);
+ $new_ghost = $event->generateNthGhost($index, $viewer, 0);
$unguarded = AphrontWriteGuard::beginScopedUnguardedWrites();
$new_ghost
->setID(null)
diff --git a/src/applications/calendar/storage/PhabricatorCalendarEvent.php b/src/applications/calendar/storage/PhabricatorCalendarEvent.php
--- a/src/applications/calendar/storage/PhabricatorCalendarEvent.php
+++ b/src/applications/calendar/storage/PhabricatorCalendarEvent.php
@@ -274,7 +274,8 @@
public function generateNthGhost(
$sequence_index,
- PhabricatorUser $actor) {
+ PhabricatorUser $actor,
+ $is_recurring = 1) {
$frequency = $this->getFrequencyUnit();
$modify_key = '+'.$sequence_index.' '.$frequency;
@@ -292,7 +293,7 @@
->setIsGhostEvent(true)
->setDateFrom($date)
->setDateTo($date + $duration)
- ->setIsRecurring(true)
+ ->setIsRecurring($is_recurring)
->setRecurrenceFrequency($this->recurrenceFrequency)
->setInstanceOfEventPHID($this->getPHID())
->setSequenceIndex($sequence_index)

File Metadata

Mime Type
text/plain
Expires
Thu, Mar 20, 12:35 PM (2 w, 1 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7713115
Default Alt Text
D13089.id31588.diff (1 KB)

Event Timeline