@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 two migration issues with Maniphest

Summary: The new editor saves tasks before applying transactions, so fields need default values.
Also, I goofed the table name.

Auditors: btrahan

+3 -3
+1 -1
resources/sql/patches/20130921.xmigratemaniphest.php
··· 7 7 $conn_w->openTransaction(); 8 8 9 9 // NOTE: These were the correct table names at the time of this patch. 10 - $xaction_table_name = 'maniphest_transaction_pro'; 10 + $xaction_table_name = 'maniphest_transactionpro'; 11 11 $comment_table_name = 'maniphest_transaction_comment'; 12 12 13 13 foreach ($rows as $row) {
+2 -2
src/applications/maniphest/storage/ManiphestTask.php
··· 18 18 protected $ownerPHID; 19 19 protected $ccPHIDs = array(); 20 20 21 - protected $status; 21 + protected $status = ManiphestTaskStatus::STATUS_OPEN; 22 22 protected $priority; 23 - protected $subpriority; 23 + protected $subpriority = 0; 24 24 25 25 protected $title; 26 26 protected $originalTitle;