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

In Remarkup, render archived Herald rules with strikethrough for consistency

Summary: Fixes T11969.

Test Plan: {T11969}

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11969

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

+4
+4
src/applications/herald/phid/HeraldRulePHIDType.php
··· 38 38 $handle->setName($monogram); 39 39 $handle->setFullName("{$monogram} {$name}"); 40 40 $handle->setURI("/{$monogram}"); 41 + 42 + if ($rule->getIsDisabled()) { 43 + $handle->setStatus(PhabricatorObjectHandle::STATUS_CLOSED); 44 + } 41 45 } 42 46 } 43 47