1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 00:42:41 +01:00

Move Conpherence to "Zxxx" only, not "Exxx"

Summary: Fixes T7439. Also two callsites I missed earlier.

Test Plan: Tried to search for strings like `'E` and `"E`.

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: epriestley

Maniphest Tasks: T7439

Differential Revision: https://secure.phabricator.com/D12616
This commit is contained in:
epriestley 2015-04-29 14:03:36 -07:00
parent f721501877
commit 2ebca7a245
2 changed files with 4 additions and 6 deletions

View file

@ -497,8 +497,8 @@ final class ConpherenceEditor extends PhabricatorApplicationTransactionEditor {
$phid = $object->getPHID();
return id(new PhabricatorMetaMTAMail())
->setSubject("E{$id}: {$title}")
->addHeader('Thread-Topic', "E{$id}: {$phid}");
->setSubject("Z{$id}: {$title}")
->addHeader('Thread-Topic', "Z{$id}: {$phid}");
}
protected function getMailTo(PhabricatorLiskDAO $object) {

View file

@ -9,13 +9,11 @@ final class ConpherenceThreadMailReceiver
}
protected function getObjectPattern() {
// TODO: Only recognize "Z" once we get closer to shipping Calendar.
return '[EZ][1-9]\d*';
return 'Z[1-9]\d*';
}
protected function loadObject($pattern, PhabricatorUser $viewer) {
// TODO: Only recognize "Z" once we get closer to shipping Calendar.
$id = (int)trim($pattern, 'EZ');
$id = (int)trim($pattern, 'Z');
return id(new ConpherenceThreadQuery())
->setViewer($viewer)