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

Use getProductionURI instead of getURI for emails.

Summary: 'TASK DETAIL' links point to the non-production uri. Our daemons run in an environment that uses different baseUrl because we can't use https locally (https is provided by our load balancers)

Test Plan: check emails generated with a non-production environment. See that the TASK DETAIL link points to production url.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

authored by

20after4 and committed by
epriestley
d7f6bd42 041040c4

+1 -1
+1 -1
src/applications/maniphest/editor/ManiphestTransactionEditor.php
··· 264 264 265 265 $is_create = $this->isCreate($transactions); 266 266 267 - $task_uri = PhabricatorEnv::getURI('/T'.$task->getID()); 267 + $task_uri = PhabricatorEnv::getProductionURI('/T'.$task->getID()); 268 268 269 269 $reply_handler = $this->buildReplyHandler($task); 270 270