From fb9c151dca7e7fe44ab66abb283c41f61951f7fc Mon Sep 17 00:00:00 2001 From: Carsten Schmitz Date: Thu, 21 Mar 2024 18:16:52 +0100 Subject: [PATCH] Fixed issue: Wrong caption for function that prompts to set up 2FA after login --- .../core/plugins/TwoFactorAdminLogin/TwoFactorAdminLogin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/core/plugins/TwoFactorAdminLogin/TwoFactorAdminLogin.php b/application/core/plugins/TwoFactorAdminLogin/TwoFactorAdminLogin.php index 9d1237da98b..f56776e1708 100644 --- a/application/core/plugins/TwoFactorAdminLogin/TwoFactorAdminLogin.php +++ b/application/core/plugins/TwoFactorAdminLogin/TwoFactorAdminLogin.php @@ -67,13 +67,13 @@ class TwoFactorAdminLogin extends AuthPluginBase ), 'force2fa' => array( 'type' => 'select', - 'label' => 'Force 2FA on login', + 'label' => 'Prompt to activate 2FA on login', 'default' => '0', 'options' => [ '0 ' => 'No', '1' => 'Yes', ], - 'help' => 'If this is active any user will be forced to create a 2FA key after first login' + 'help' => 'Upon login, users who have not enabled two-factor authentication (2FA) will be prompted to set it up.' ), );