Changeset 3342558
- Timestamp:
- 08/10/2025 10:34:41 PM (8 months ago)
- Location:
- two-factor-2fa-via-email/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
ss88-two-factor-via-email.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
two-factor-2fa-via-email/trunk/readme.txt
r3268786 r3342558 133 133 == Changelog == 134 134 135 = 1.9.7 = 136 * PHP Warning fix on new user 137 135 138 = 1.9.6 = 136 139 * Integrated Initialization Vector -
two-factor-2fa-via-email/trunk/ss88-two-factor-via-email.php
r3227600 r3342558 4 4 Plugin URI: https://ss88.us/plugins/two-factor-2fa-authentication-via-email-plugin-for-wordpress 5 5 Description: A lightweight plugin to allow the use of two-factor authentication (2FA) through email. One-click login with this Two-Factor (2FA) Authentication plugin for WordPress. 6 Version: 1.9. 66 Version: 1.9.7 7 7 Author: SS88 LLC 8 8 Author URI: https://ss88.us … … 12 12 class SS88_2FAVE { 13 13 14 protected $version = '1.9. 6';14 protected $version = '1.9.7'; 15 15 protected $email_tags = []; 16 16 protected $expires = 15; … … 352 352 function userOptions($U) { 353 353 354 $isEnabled = $this->isEnabled($U->ID); 355 $isAPIEnabled = $this->isEnabled($U->ID, 'API'); 354 $isUser = is_object($var) && isset($var->ID); 355 356 $isEnabled = $isUser ? $this->isEnabled($U->ID) : false; 357 $isAPIEnabled = $isUser ? $this->isEnabled($U->ID, 'API') : false; 356 358 $isChecked = ($isEnabled) ? 'checked="checked"' : ''; 357 359 $isCheckedAPI = ($isAPIEnabled) ? 'checked="checked"' : '';
Note: See TracChangeset
for help on using the changeset viewer.