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

Set time and date on Calendar Date Control form

Summary: Recurring events will fatal a Calendar with this not set. `newDateTime` requires a date and time to be called property. I think this is correct fix? Fixes T10766

Test Plan: Build a recurring event, pull up /calendar/, see recurring events as expected. Previously, fatal.

Reviewers: lpriestley, epriestley

Reviewed By: epriestley

Subscribers: CodeMouse92, Korvin

Maniphest Tasks: T10766

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

+1 -1
+1 -1
src/view/form/control/AphrontFormDateControlValue.php
··· 279 279 } 280 280 281 281 public function getDateTime() { 282 - return $this->newDateTime(); 282 + return $this->newDateTime($this->valueDate, $this->valueTime); 283 283 } 284 284 285 285 private function getTimezone() {