@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

authored by

Luka Kladaric and committed by
allixsenos
fc1c633b 33ec8554

+2 -2
+2 -2
src/applications/settings/setting/PhabricatorEmailVarySubjectsSetting.php
··· 48 48 49 49 protected function getSelectOptions() { 50 50 return array( 51 - self::VALUE_VARY_SUBJECTS => pht('Enable "Re:" Prefix'), 52 - self::VALUE_STATIC_SUBJECTS => pht('Disable "Re:" Prefix'), 51 + self::VALUE_VARY_SUBJECTS => pht('Enable Vary Subjects'), 52 + self::VALUE_STATIC_SUBJECTS => pht('Disable Vary Subjects'), 53 53 ); 54 54 } 55 55