@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.

Correct rendering of "Another Herald Rule" conditions in Herald

Summary: Fixes T8920. These are semi-magical and need to be slightly special cased, now.

Test Plan: {F654502}

Reviewers: chad, btrahan

Reviewed By: btrahan

Subscribers: epriestley

Maniphest Tasks: T8920

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

+10
+10
src/applications/herald/field/HeraldAnotherRuleField.php
··· 35 35 ->setOptions(array()); 36 36 } 37 37 38 + public function renderConditionValue( 39 + PhabricatorUser $viewer, 40 + $condition, 41 + $value) { 42 + 43 + $value = (array)$value; 44 + 45 + return $viewer->renderHandleList($value); 46 + } 47 + 38 48 }