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

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
This commit is contained in:
epriestley 2017-01-05 07:38:57 -08:00
parent 103b450713
commit 68374aa264

View file

@ -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);
}