Changeset 3036400
- Timestamp:
- 02/15/2024 03:34:11 PM (2 years ago)
- Location:
- wordpress-2-step-verification/2.x
- Files:
-
- 3 edited
-
includes/Wp2sv_Force.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
wordpress-2-step-verification.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wordpress-2-step-verification/2.x/includes/Wp2sv_Force.php
r3002854 r3036400 16 16 } 17 17 function handle(){ 18 if($this->isEnabledForce() && ! is_ajax()){18 if($this->isEnabledForce() && !$this->is_ajax()){ 19 19 if($this->mode==='popup'|| $this->mode==='notice'){ 20 20 $this->handlePopup(); … … 23 23 } 24 24 } 25 } 26 protected function is_ajax(){ 27 return function_exists( 'wp_doing_ajax' ) ? wp_doing_ajax() : (defined( 'DOING_AJAX' ) && DOING_AJAX); 25 28 } 26 29 function handleRedirect(){ -
wordpress-2-step-verification/2.x/readme.txt
r3002865 r3036400 63 63 64 64 == Changelog == 65 = 2.6.1 = 66 * Fix is_ajax not defined 65 67 66 68 = 2.6.0 = -
wordpress-2-step-verification/2.x/wordpress-2-step-verification.php
r3002854 r3036400 5 5 * Description: Wordpress 2-Step Verification adds an extra layer of security to your Wordpress Account. In addition to your username and password, you'll enter a code that generated by Android/iPhone/Blackberry app or Plugin will send you via email upon signing in. 6 6 * Author: as247 7 * Version: 2.6. 07 * Version: 2.6.1 8 8 * Author URI: https://tinyinstaller.top/ 9 9 * Compatibility: WordPress 4.0 … … 20 20 define('PHP_INT_MIN', ~PHP_INT_MAX); 21 21 } 22 define('WP2SV_VERSION','2.6. 0');22 define('WP2SV_VERSION','2.6.1'); 23 23 define('WP2SV_ABSPATH', dirname(__FILE__) . '/'); 24 24 define('WP2SV_INC', WP2SV_ABSPATH . 'includes');
Note: See TracChangeset
for help on using the changeset viewer.