mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-09 16:32:39 +01:00
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
This commit is contained in:
parent
041040c422
commit
d7f6bd42d6
1 changed files with 1 additions and 1 deletions
|
@ -264,7 +264,7 @@ final class ManiphestTransactionEditor extends PhabricatorEditor {
|
|||
|
||||
$is_create = $this->isCreate($transactions);
|
||||
|
||||
$task_uri = PhabricatorEnv::getURI('/T'.$task->getID());
|
||||
$task_uri = PhabricatorEnv::getProductionURI('/T'.$task->getID());
|
||||
|
||||
$reply_handler = $this->buildReplyHandler($task);
|
||||
|
||||
|
|
Loading…
Reference in a new issue