mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-27 01:02:42 +01:00
Don't send the action cue, use production URIs.
This commit is contained in:
parent
8218ca15b9
commit
dd1d593786
1 changed files with 3 additions and 1 deletions
|
@ -123,12 +123,14 @@ abstract class DifferentialMail {
|
||||||
|
|
||||||
$actions = array();
|
$actions = array();
|
||||||
$body = $this->renderBody();
|
$body = $this->renderBody();
|
||||||
|
/*
|
||||||
$body .= <<<EOTEXT
|
$body .= <<<EOTEXT
|
||||||
|
|
||||||
ACTIONS
|
ACTIONS
|
||||||
Reply to comment, or !accept, !reject, !abandon, !resign, or !showdiff.
|
Reply to comment, or !accept, !reject, !abandon, !resign, or !showdiff.
|
||||||
|
|
||||||
EOTEXT;
|
EOTEXT;
|
||||||
|
*/
|
||||||
|
|
||||||
if ($this->getHeraldTranscriptURI() && $this->isFirstMailToRecipients()) {
|
if ($this->getHeraldTranscriptURI() && $this->isFirstMailToRecipients()) {
|
||||||
$xscript_uri = $this->getHeraldTranscriptURI();
|
$xscript_uri = $this->getHeraldTranscriptURI();
|
||||||
|
@ -252,7 +254,7 @@ EOTEXT;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getRevisionURI() {
|
public function getRevisionURI() {
|
||||||
return PhabricatorEnv::getURI('/D'.$this->getRevision()->getID());
|
return PhabricatorEnv::getProductionURI('/D'.$this->getRevision()->getID());
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setIsFirstMailToRecipients($first) {
|
public function setIsFirstMailToRecipients($first) {
|
||||||
|
|
Loading…
Reference in a new issue