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

Disable Maniphest Remarkup rule with disabled Maniphest

Test Plan: Disabled Maniphest, wrote T1000, enabled, wrote T1000.

Reviewers: pieter, epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

vrana 58716521 03aca35c

+6 -2
+6 -2
src/infrastructure/markup/PhabricatorMarkupEngine.php
··· 400 400 $rules[] = new PhabricatorRemarkupRulePhriction(); 401 401 402 402 $rules[] = new PhabricatorRemarkupRuleDifferentialHandle(); 403 - $rules[] = new PhabricatorRemarkupRuleManiphestHandle(); 403 + if (PhabricatorEnv::getEnvConfig('maniphest.enabled')) { 404 + $rules[] = new PhabricatorRemarkupRuleManiphestHandle(); 405 + } 404 406 405 407 $rules[] = new PhabricatorRemarkupRuleEmbedFile(); 406 408 407 409 $rules[] = new PhabricatorRemarkupRuleDifferential(); 408 410 $rules[] = new PhabricatorRemarkupRuleDiffusion(); 409 - $rules[] = new PhabricatorRemarkupRuleManiphest(); 411 + if (PhabricatorEnv::getEnvConfig('maniphest.enabled')) { 412 + $rules[] = new PhabricatorRemarkupRuleManiphest(); 413 + } 410 414 $rules[] = new PhabricatorRemarkupRulePaste(); 411 415 412 416 $rules[] = new PhabricatorRemarkupRuleCountdown();