Changeset 2356137
- Timestamp:
- 08/10/2020 12:26:12 PM (6 years ago)
- Location:
- 2fas/trunk
- Files:
-
- 5 edited
-
changelog.txt (modified) (1 diff)
-
constants.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
src/Codes/QR_Code_Message.php (modified) (1 diff)
-
twofas.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
2fas/trunk/changelog.txt
r2343404 r2356137 1 1 == Changelog == 2 3 = 3.0.1 (Aug. 10, 2020) = 4 * Fixed Push Notifications 2 5 3 6 = 3.0 (Jul. 20, 2020) = -
2fas/trunk/constants.php
r2343404 r2356137 15 15 define( 'TWOFAS_TEMPLATES_PATH', $templates_path ); 16 16 define( 'TWOFAS_WP_ADMIN_PATH', $admin_url ); 17 define( 'TWOFAS_PLUGIN_VERSION', '3.0 ' );17 define( 'TWOFAS_PLUGIN_VERSION', '3.0.1' ); 18 18 define( 'TWOFAS_DEPRECATE_PHP_OLDER_THAN', '5.6' ); -
2fas/trunk/readme.txt
r2343404 r2356137 130 130 == Changelog == 131 131 132 = 3.0 (Jul. 20, 2020) = 133 * Dropped support for PHP 5.4, 5.5. Minimum required PHP version is now 5.6 134 * Dropped support for Wordpress < 4.2 Minimum required version is now 4.2 135 * Added Privacy Policy 136 * Updated SDK (Account 4.2, Api 7.2) 137 * Administrator can disable trusted devices feature 138 * Administrator can see 2FAS status on each user in user list 139 * Fixed uninstaller 132 = 3.0.1 (Aug. 10, 2020) = 133 * Fixed Push Notifications -
2fas/trunk/src/Codes/QR_Code_Message.php
r2343404 r2356137 62 62 private function build_query( $totp_secret, $push_id ) { 63 63 return build_query( [ 64 'secret' => $totp_secret,65 'issuer' => $this->get_issuer(),66 ' push_id' => $push_id,64 'secret' => $totp_secret, 65 'issuer' => $this->get_issuer(), 66 'mobile_secret' => $push_id, 67 67 ] ); 68 68 } -
2fas/trunk/twofas.php
r2343404 r2356137 4 4 * Plugin URI: https://wordpress.org/plugins/2fas/ 5 5 * Description: 2FAS strengthens WordPress admin security by requiring an additional verification code on untrusted devices. 6 * Version: 3.0 6 * Version: 3.0.1 7 7 * Author: Two Factor Authentication Service Inc. 8 8 * Author URI: https://2fas.com
Note: See TracChangeset
for help on using the changeset viewer.