From 68374aa26494292af3e09e8b2e42c49251721fc2 Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 5 Jan 2017 07:38:57 -0800 Subject: [PATCH] Correct a "bin/mail" command in "Show Raw Email" help text Summary: Fixes T12068. These are inbound messages, not outbound. Test Plan: Read carefully. Reviewers: chad Reviewed By: chad Maniphest Tasks: T12068 Differential Revision: https://secure.phabricator.com/D17144 --- .../PhabricatorApplicationTransactionCommentRawController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/transactions/controller/PhabricatorApplicationTransactionCommentRawController.php b/src/applications/transactions/controller/PhabricatorApplicationTransactionCommentRawController.php index ae3fb7520c..c341079e9e 100644 --- a/src/applications/transactions/controller/PhabricatorApplicationTransactionCommentRawController.php +++ b/src/applications/transactions/controller/PhabricatorApplicationTransactionCommentRawController.php @@ -48,7 +48,7 @@ final class PhabricatorApplicationTransactionCommentRawController $title = pht('Email Body Text'); $body = $message->getRawTextBody(); $details_text = pht( - 'For full details, run `/bin/mail show-outbound --id %d`', + 'For full details, run `/bin/mail show-inbound --id %d`', $source_id); $addendum = new PHUIRemarkupView($viewer, $details_text); }