From e87717c23db3a2e72eb540123a5c06ed25f28fb7 Mon Sep 17 00:00:00 2001 From: bobpaul <90864+bobpaul@users.noreply.github.com> Date: Mon, 21 Sep 2020 05:32:53 -0500 Subject: [PATCH] Help text implied the opposite of what the checkbox did. Closes #4354 (#4357) --- src/opnsense/mvc/app/library/OPNsense/Auth/TOTP.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opnsense/mvc/app/library/OPNsense/Auth/TOTP.php b/src/opnsense/mvc/app/library/OPNsense/Auth/TOTP.php index 2c0e2d89f..2f0e0d490 100644 --- a/src/opnsense/mvc/app/library/OPNsense/Auth/TOTP.php +++ b/src/opnsense/mvc/app/library/OPNsense/Auth/TOTP.php @@ -253,7 +253,7 @@ trait TOTP }; $fields["passwordFirst"] = array(); $fields["passwordFirst"]["name"] = gettext("Reverse token order"); - $fields["passwordFirst"]["help"] = gettext("Require the password in front of the token instead of behind it."); + $fields["passwordFirst"]["help"] = gettext("Checking this box requires the token after the password. Default requires the token before the password."); $fields["passwordFirst"]["type"] = "checkbox"; $fields["passwordFirst"]["validate"] = function ($value) { return array();