From bb022d2376fb46c9e521c4cf05d0a159a2af4805 Mon Sep 17 00:00:00 2001 From: epriestley Date: Sat, 2 Aug 2014 01:12:53 -0700 Subject: [PATCH] Minor, restore Audit getMailThreading method Summary: This also still has a callsite which I missed. Auditors: btrahan --- .../audit/editor/PhabricatorAuditCommentEditor.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/applications/audit/editor/PhabricatorAuditCommentEditor.php b/src/applications/audit/editor/PhabricatorAuditCommentEditor.php index 60b8a7f878..357ad2dd5d 100644 --- a/src/applications/audit/editor/PhabricatorAuditCommentEditor.php +++ b/src/applications/audit/editor/PhabricatorAuditCommentEditor.php @@ -291,4 +291,14 @@ final class PhabricatorAuditCommentEditor extends PhabricatorEditor { return $reply_handler; } + public static function getMailThreading( + PhabricatorRepository $repository, + PhabricatorRepositoryCommit $commit) { + + return array( + 'diffusion-audit-'.$commit->getPHID(), + 'Commit r'.$repository->getCallsign().$commit->getCommitIdentifier(), + ); + } + }