From e316ed0f626f0094d8a54b3d669a6caf2cddab05 Mon Sep 17 00:00:00 2001 From: Michael Wilson Date: Tue, 12 Nov 2024 15:14:23 +0930 Subject: [PATCH] replace Smartphone with Authenticator --- application/common/mail/lost-security-key.html.php | 2 +- application/common/mail/mfa-disabled.html.php | 2 +- application/common/mail/password-changed.html.php | 2 +- application/common/mail/password-expired.html.php | 2 +- application/common/models/Mfa.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/application/common/mail/lost-security-key.html.php b/application/common/mail/lost-security-key.html.php index aa948a8e..e8fbb097 100644 --- a/application/common/mail/lost-security-key.html.php +++ b/application/common/mail/lost-security-key.html.php @@ -21,7 +21,7 @@

We noticed you have a Security Key configured for 2-Step Verification on your Identity account but have not used it recently and instead have been using a different option for 2-Step - Verification (a Smartphone App or Printable Codes). + Verification (an Authenticator App or Printable Codes).

This email is just a courtesy to check that you still have your Security Key. If not, please remove it from your diff --git a/application/common/mail/mfa-disabled.html.php b/application/common/mail/mfa-disabled.html.php index a34c1896..4249cea4 100644 --- a/application/common/mail/mfa-disabled.html.php +++ b/application/common/mail/mfa-disabled.html.php @@ -31,7 +31,7 @@

Instructions to set up 2-Step Verification:

  1. Go to .
  2. -
  3. Under 2-Step Verification, set up the options that suit you best (Security Key, Smartphone App, and/or +
  4. Under 2-Step Verification, set up the options that suit you best (Security Key, Authenticator App, and/or Printable Codes)
  5. Log out and log in again to see how it works and to have it remember your browser for 30 days.
diff --git a/application/common/mail/password-changed.html.php b/application/common/mail/password-changed.html.php index e490261d..5b60f4b6 100644 --- a/application/common/mail/password-changed.html.php +++ b/application/common/mail/password-changed.html.php @@ -74,7 +74,7 @@ Instructions to set up 2-Step Verification:
  1. Go to
  2. -
  3. Under 2-Step Verification, set up the options that suit you best (USB Security Key, Smartphone App, and/or +
  4. Under 2-Step Verification, set up the options that suit you best (USB Security Key, Authenticator App, and/or Printable Codes)
  5. Log out and log in again to see how it works and to have it remember your computer for 30 days.
diff --git a/application/common/mail/password-expired.html.php b/application/common/mail/password-expired.html.php index fb3370db..3d9a2855 100644 --- a/application/common/mail/password-expired.html.php +++ b/application/common/mail/password-expired.html.php @@ -43,7 +43,7 @@ Instructions to set up 2-Step Verification:
  1. Go to
  2. -
  3. Under 2-Step Verification, set up the options that suit you best (USB Security Key, Smartphone App, and/or +
  4. Under 2-Step Verification, set up the options that suit you best (USB Security Key, Authenticator App, and/or Printable Codes)
  5. Log out and log in again to see how it works and to have it remember your computer for 30 days. Note that logging out will undo the "Remember this computer" setting.
  6. diff --git a/application/common/models/Mfa.php b/application/common/models/Mfa.php index 3f886578..b680b197 100644 --- a/application/common/models/Mfa.php +++ b/application/common/models/Mfa.php @@ -491,7 +491,7 @@ public static function getTypes() return [ self::TYPE_BACKUPCODE => 'Printable Codes', self::TYPE_MANAGER => 'Manager Backup Code', - self::TYPE_TOTP => 'Smartphone App', + self::TYPE_TOTP => 'Authenticator App', self::TYPE_WEBAUTHN => 'Security Key', ]; }