Skip to content

Commit abee691

Browse files
relrodepriestley
authored andcommitted
Fix more boolean reversals.
Summary: Missed these in D4357. Test Plan: Meh. Reviewers: epriestley, chad Reviewed By: chad CC: aran, Korvin Maniphest Tasks: T2255 Differential Revision: https://secure.phabricator.com/D4371
1 parent bc2db90 commit abee691

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/applications/differential/config/PhabricatorDifferentialConfigOptions.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ public function getOptions() {
1616
$this->newOption('differential.show-host-field', 'bool', false)
1717
->setBoolOptions(
1818
array(
19-
pht('Disable "Host" Fields'),
2019
pht('Show "Host" Fields'),
20+
pht('Disable "Host" Fields'),
2121
))
2222
->setSummary(pht('Show or hide the "Host" and "Path" fields.'))
2323
->setDescription(
@@ -32,8 +32,8 @@ public function getOptions() {
3232
$this->newOption('differential.show-test-plan-field', 'bool', true)
3333
->setBoolOptions(
3434
array(
35-
pht('Hide "Test Plan" Field'),
3635
pht('Show "Test Plan" Field'),
36+
pht('Hide "Test Plan" Field'),
3737
))
3838
->setSummary(pht('Show or hide the "Test Plan" field.'))
3939
->setDescription(
@@ -47,8 +47,8 @@ public function getOptions() {
4747
$this->newOption('differential.enable-email-accept', 'bool', false)
4848
->setBoolOptions(
4949
array(
50-
pht('Disable Email "!accept" Action'),
5150
pht('Enable Email "!accept" Action'),
51+
pht('Disable Email "!accept" Action'),
5252
))
5353
->setSummary(pht('Enable or disable "!accept" action via email.'))
5454
->setDescription(

0 commit comments

Comments
 (0)