1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2025-01-16 17:51:10 +01:00

(stable) Promote 2017 Week 1

This commit is contained in:
epriestley 2017-01-06 17:01:33 -08:00
commit 9503b941cc

View file

@ -1962,7 +1962,13 @@ EOTEXT
$faux_message[] = pht('CC: %s', $this->getArgument('cc'));
}
// See T12069. After T10312, the first line of a message is always parsed
// as a title. Add a placeholder so "Reviewers" and "CC" are never the
// first line.
$placeholder_title = pht('<placeholder>');
if ($faux_message) {
array_unshift($faux_message, $placeholder_title);
$faux_message = implode("\n\n", $faux_message);
$local = array(
'(Flags) ' => array(
@ -2034,6 +2040,10 @@ EOTEXT
continue;
}
if ($title === $placeholder_title) {
continue;
}
if (!isset($result['title'])) {
// We don't have a title yet, so use this one.
$result['title'] = $title;