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

fix Vary Subjects option names

Summary:
The option names for `Vary Subjects` are copypasta from the `Add "Re:" Prefix` option. Fix their names to refer to `Vary Subjects` instead.

Fixes T11148

Test Plan: Verify option names for `Vary Subjects` refer to `Add "Re:" Prefix` before apply. Verify they no longer do after apply.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin

Maniphest Tasks: T11148

Differential Revision: https://secure.phabricator.com/D16113
This commit is contained in:
Luka Kladaric 2016-06-14 17:13:12 +00:00 committed by allixsenos
parent 33ec855449
commit fc1c633bae

View file

@ -48,8 +48,8 @@ final class PhabricatorEmailVarySubjectsSetting
protected function getSelectOptions() {
return array(
self::VALUE_VARY_SUBJECTS => pht('Enable "Re:" Prefix'),
self::VALUE_STATIC_SUBJECTS => pht('Disable "Re:" Prefix'),
self::VALUE_VARY_SUBJECTS => pht('Enable Vary Subjects'),
self::VALUE_STATIC_SUBJECTS => pht('Disable Vary Subjects'),
);
}