@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 EditEngine preview/draft for first comment on a task you didn't create

Summary: Ref T9132. See T9908#147038.

Test Plan:
- As user A, created a new task.
- As user B, started typing a comment on it (with no prior activity).
- Users A and B must be different.

Before patch: preview/draft don't work, trace in error log (see above).

After patch: preview/draft work.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T9132

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

+1 -1
+1 -1
src/applications/draft/storage/PhabricatorVersionedDraft.php
··· 58 58 return id(new PhabricatorVersionedDraft()) 59 59 ->setObjectPHID($object_phid) 60 60 ->setAuthorPHID($viewer_phid) 61 - ->setVersion($version) 61 + ->setVersion((int)$version) 62 62 ->save(); 63 63 } 64 64