1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Fix a typo in the new "ApplicationEmailHeraldField"

Summary: This rule isn't quite right.

Test Plan: Shipped email in with a rule in effect, saw correct value in transcript.

Reviewers: btrahan, chad

Reviewed By: chad

Subscribers: epriestley

Differential Revision: https://secure.phabricator.com/D13578
This commit is contained in:
epriestley 2015-07-07 06:22:19 -07:00
parent 0ffc7a8ab6
commit b36d4025cb

View file

@ -18,7 +18,7 @@ final class PhabricatorMetaMTAApplicationEmailHeraldField
$email = $this->getAdapter()->getApplicationEmail(); $email = $this->getAdapter()->getApplicationEmail();
if ($email) { if ($email) {
$phids[] = $email; $phids[] = $email->getPHID();
} }
return $phids; return $phids;