@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 an issue with creating new Conpherences

Summary: The participant list can sometimes be `null`, which fails when we try to `array_fuse()` it.

Test Plan: Created a new thread cleanly.

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: epriestley

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

+2 -2
+1 -1
src/applications/conpherence/editor/ConpherenceEditor.php
··· 490 490 foreach ($xactions as $xaction) { 491 491 $phids = $this->getPHIDTransactionNewValue( 492 492 $xaction, 493 - $object->getParticipantPHIDs()); 493 + nonempty($object->getParticipantPHIDs(), array())); 494 494 495 495 if (!$phids) { 496 496 continue;
+1 -1
src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php
··· 1413 1413 PhabricatorApplicationTransaction $xaction, 1414 1414 $old = null) { 1415 1415 1416 - if ($old) { 1416 + if ($old !== null) { 1417 1417 $old = array_fuse($old); 1418 1418 } else { 1419 1419 $old = array_fuse($xaction->getOldValue());