@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 some extra "changed the start time of this event" transactions

Summary: Ref T11326. Since we were missing an `(int)` cast here, the code ended up thinking that changing `12345` to `"12345"` was an edit. It isn't.

Test Plan: Created/edited events, no more extra "changed start time from X to the same X" transaction clutter.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11326

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

+1 -1
+1 -1
src/view/form/control/AphrontFormDateControlValue.php
··· 182 182 return null; 183 183 } 184 184 185 - return $datetime->format('U'); 185 + return (int)$datetime->format('U'); 186 186 } 187 187 188 188 private function getTimeFormat() {