@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 "edit" for Maniphest comments

Summary:
Ref T2217. Fixes T3876. We incorrectly have a unique key on `(authorPHID, transactionPHID)`, which prevents saving multiple versions of a comment.

I'm not entirely sure why this exists. I think it came from Pholio (where it works for inlines, because it has an additional component, but maybe should be adjusted) but we might need to wipe it out of more apps too.

Test Plan: Edited a comment in Maniphest.

Reviewers: btrahan

Reviewed By: btrahan

CC: aran

Maniphest Tasks: T2217, T3876

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

+6
+2
resources/sql/patches/20130924.mdraftkey.sql
··· 1 + ALTER TABLE {$NAMESPACE}_maniphest.maniphest_transaction_comment 2 + DROP KEY `key_draft`;
+4
src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php
··· 1624 1624 'type' => 'sql', 1625 1625 'name' => $this->getPatchPath('20130923.mrename.sql'), 1626 1626 ), 1627 + '20130924.mdraftkey.sql' => array( 1628 + 'type' => 'sql', 1629 + 'name' => $this->getPatchPath('20130924.mdraftkey.sql'), 1630 + ), 1627 1631 ); 1628 1632 } 1629 1633 }