Changeset 3432377
- Timestamp:
- 01/05/2026 04:39:30 AM (3 months ago)
- Location:
- fraudlabs-pro-sms-verification/trunk
- Files:
-
- 3 edited
-
fraudlabspro-sms-verification.php (modified) (1 diff)
-
includes/class-wc-fraudlabspro-sms-verification.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fraudlabs-pro-sms-verification/trunk/fraudlabspro-sms-verification.php
r3386790 r3432377 3 3 Plugin Name: FraudLabs Pro SMS Verification 4 4 Description: SMS verification help merchants to authenticate the client's identity by sending them a SMS for verification. 5 Version: 1.11. 25 Version: 1.11.3 6 6 Author: FraudLabs Pro 7 7 Author URI: https://www.fraudlabspro.com -
fraudlabs-pro-sms-verification/trunk/includes/class-wc-fraudlabspro-sms-verification.php
r3386790 r3432377 426 426 $orderId = $order->get_id(); 427 427 $verified = get_post_meta($orderId, '_fraudlabspro_sms_vrf'); 428 if ($verified[0] == 'yes') { 429 return; 428 if ($verified) { 429 if ($verified[0] == 'yes') { 430 return; 431 } 430 432 } 431 433 … … 606 608 if (get_option('fraudlabs_pro_sms_verification_wc_default_checkout_form') == 0) { 607 609 $this->write_debug_log('SMS Verification on WooCommerce Checkout Form not enabled. SMS Verification will not be performed.'); 608 return ;610 return $block_content; 609 611 } 610 612 elseif ((trim(get_option('fraudlabs_pro_sms_verification_api_key')) == '')) { 611 613 $this->write_debug_log('FraudLabs Pro API Key not inserted. SMS Verification will not be performed.'); 612 return ;614 return $block_content; 613 615 } 614 616 -
fraudlabs-pro-sms-verification/trunk/readme.txt
r3414862 r3432377 5 5 Requires at least: 4.6 6 6 Tested up to: 6.9 7 Stable tag: 1.11. 27 Stable tag: 1.11.3 8 8 9 9 Description: SMS verification help merchants to authenticate the client's phone number via SMS verification to prevent fraudulent orders. … … 49 49 == Changelog == 50 50 51 * 1.11.3 Fixed SMS Verification not working in WooCommerce Checkout page. 51 52 * 1.11.2 Fixed SMS Verification issue in WooCommerce Checkout Block. 52 53 * 1.11.1 Fixed security vulneralbilities.
Note: See TracChangeset
for help on using the changeset viewer.