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

Temporarily disable transaction story links in HTML mail for the deploy

Ref T12921. See that task for discussion. Behavioral revert of D19968.

+5 -1
+5 -1
src/applications/transactions/storage/PhabricatorApplicationTransaction.php
··· 785 785 } 786 786 787 787 public function getTitleForHTMLMail() { 788 - $title = $this->getTitleForMailWithRenderingTarget(self::TARGET_HTML); 788 + // TODO: For now, rendering this with TARGET_HTML generates links with 789 + // bad targets ("/x/y/" instead of "https://dev.example.com/x/y/"). Throw 790 + // a rug over the issue for the moment. See T12921. 791 + 792 + $title = $this->getTitleForMailWithRenderingTarget(self::TARGET_TEXT); 789 793 if ($title === null) { 790 794 return null; 791 795 }