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

Avoid HTML escaping in plain text e-mails

Summary: Seen in e-mail from T2016.

Test Plan: None.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Maniphest Tasks: T2432

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

vrana 8eb404ae 0d38bca1

+5 -1
+5 -1
src/applications/maniphest/view/ManiphestTransactionDetailView.php
··· 624 624 $links[] = $this->handles[$phid]->renderLink(); 625 625 } 626 626 } 627 - return phutil_implode_html(', ', $links); 627 + if ($this->forEmail) { 628 + return implode(', ', $links); 629 + } else { 630 + return phutil_implode_html(', ', $links); 631 + } 628 632 } 629 633 630 634 private function renderString($string) {