Changeset 3332351
- Timestamp:
- 07/22/2025 02:47:59 PM (8 months ago)
- Location:
- two-factor-login-telegram
- Files:
-
- 6 edited
- 1 copied
-
tags/3.5.2 (copied) (copied from two-factor-login-telegram/trunk)
-
tags/3.5.2/README.md (modified) (2 diffs)
-
tags/3.5.2/assets/js/wp-factor-telegram-plugin.js (modified) (1 diff)
-
tags/3.5.2/two-factor-telegram.php (modified) (2 diffs)
-
trunk/README.md (modified) (2 diffs)
-
trunk/assets/js/wp-factor-telegram-plugin.js (modified) (1 diff)
-
trunk/two-factor-telegram.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
two-factor-login-telegram/tags/3.5.2/README.md
r3332313 r3332351 5 5 Requires PHP: 7.0 6 6 Tested up to: 6.8 7 Stable tag: 3.5. 17 Stable tag: 3.5.2 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 53 53 == Changelog == 54 54 55 = 3.5. 1=56 * Bugfixes in timestamp55 = 3.5.2 = 56 * Timestamp bugfixes 57 57 58 58 = 3.5.0 = -
two-factor-login-telegram/tags/3.5.2/assets/js/wp-factor-telegram-plugin.js
r3332295 r3332351 31 31 var isConfigured = $twconfigrow.length > 0; 32 32 33 if ($(this).is(":checked") && !isConfigured) { 34 $twconfig.addClass('show').show(); 35 updateProgress(25); 33 if ($(this).is(":checked")) { 34 // Enable 2FA = 1, so tg_wp_factor_valid = 0 35 $twctrl.val(0); 36 if (!isConfigured) { 37 $twconfig.addClass('show').show(); 38 updateProgress(25); 39 } 36 40 } else { 41 // Enable 2FA = 0, so tg_wp_factor_valid = 1 42 $twctrl.val(1); 37 43 $twconfig.removeClass('show'); 38 44 setTimeout(function() { 39 45 $twconfig.hide(); 40 46 }, 300); 41 $twctrl.val(0);42 47 updateProgress(0); 43 48 resetStatusIndicators(); -
two-factor-login-telegram/tags/3.5.2/two-factor-telegram.php
r3332313 r3332351 5 5 * Plugin URI: https://blog.dueclic.com/wordpress-autenticazione-due-fattori-telegram/ 6 6 * Description: This plugin enables two factor authentication with Telegram by increasing your website security and sends an alert every time a wrong login occurs. 7 * Version: 3.5. 17 * Version: 3.5.2 8 8 * Requires at least: 6.0 9 9 * Tested up to: 6.8 … … 22 22 } 23 23 24 define('WP_FACTOR_PLUGIN_VERSION', '3.5. 1');24 define('WP_FACTOR_PLUGIN_VERSION', '3.5.2'); 25 25 26 26 define('WP_FACTOR_AUTHCODE_EXPIRE_SECONDS', 60 * 20); -
two-factor-login-telegram/trunk/README.md
r3332313 r3332351 5 5 Requires PHP: 7.0 6 6 Tested up to: 6.8 7 Stable tag: 3.5. 17 Stable tag: 3.5.2 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 53 53 == Changelog == 54 54 55 = 3.5. 1=56 * Bugfixes in timestamp55 = 3.5.2 = 56 * Timestamp bugfixes 57 57 58 58 = 3.5.0 = -
two-factor-login-telegram/trunk/assets/js/wp-factor-telegram-plugin.js
r3332295 r3332351 31 31 var isConfigured = $twconfigrow.length > 0; 32 32 33 if ($(this).is(":checked") && !isConfigured) { 34 $twconfig.addClass('show').show(); 35 updateProgress(25); 33 if ($(this).is(":checked")) { 34 // Enable 2FA = 1, so tg_wp_factor_valid = 0 35 $twctrl.val(0); 36 if (!isConfigured) { 37 $twconfig.addClass('show').show(); 38 updateProgress(25); 39 } 36 40 } else { 41 // Enable 2FA = 0, so tg_wp_factor_valid = 1 42 $twctrl.val(1); 37 43 $twconfig.removeClass('show'); 38 44 setTimeout(function() { 39 45 $twconfig.hide(); 40 46 }, 300); 41 $twctrl.val(0);42 47 updateProgress(0); 43 48 resetStatusIndicators(); -
two-factor-login-telegram/trunk/two-factor-telegram.php
r3332313 r3332351 5 5 * Plugin URI: https://blog.dueclic.com/wordpress-autenticazione-due-fattori-telegram/ 6 6 * Description: This plugin enables two factor authentication with Telegram by increasing your website security and sends an alert every time a wrong login occurs. 7 * Version: 3.5. 17 * Version: 3.5.2 8 8 * Requires at least: 6.0 9 9 * Tested up to: 6.8 … … 22 22 } 23 23 24 define('WP_FACTOR_PLUGIN_VERSION', '3.5. 1');24 define('WP_FACTOR_PLUGIN_VERSION', '3.5.2'); 25 25 26 26 define('WP_FACTOR_AUTHCODE_EXPIRE_SECONDS', 60 * 20);
Note: See TracChangeset
for help on using the changeset viewer.