Changeset 3439569
- Timestamp:
- 01/14/2026 01:26:38 PM (3 months ago)
- Location:
- svea-checkout-for-woocommerce
- Files:
-
- 6 edited
- 1 copied
-
tags/3.4.3 (copied) (copied from svea-checkout-for-woocommerce/trunk)
-
tags/3.4.3/inc/Template_Handler.php (modified) (2 diffs)
-
tags/3.4.3/readme.txt (modified) (3 diffs)
-
tags/3.4.3/svea-checkout-for-woocommerce.php (modified) (2 diffs)
-
trunk/inc/Template_Handler.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/svea-checkout-for-woocommerce.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
svea-checkout-for-woocommerce/tags/3.4.3/inc/Template_Handler.php
r3438045 r3439569 461 461 $svea_order_id = WC()->session->get( 'sco_order_id' ); 462 462 463 if ( empty( $svea_order_id ) ) { 464 return; 465 } 466 463 467 $args = [ 464 468 'status' => 'any', … … 476 480 477 481 // Check if status is final 478 if ( isset( $svea_checkout_module['Status'] ) &&strtoupper( $svea_checkout_module['Status'] ) !== 'FINAL' ) {479 WC_Gateway_Svea_Checkout::log( sprintf( 'Order %s is not in final state, status: %s', $svea_order_id, $svea_checkout_module['Status'] ) );482 if ( ! isset( $svea_checkout_module['Status'] ) || strtoupper( $svea_checkout_module['Status'] ) !== 'FINAL' ) { 483 WC_Gateway_Svea_Checkout::log( sprintf( 'Order %s is not in final state, status: %s', $svea_order_id, $svea_checkout_module['Status'] ?? 'Order not found' ) ); 480 484 wp_safe_redirect( wc_get_checkout_url() ); 481 485 exit; -
svea-checkout-for-woocommerce/tags/3.4.3/readme.txt
r3438045 r3439569 10 10 License: Apache 2.0 11 11 License URI: https://www.apache.org/licenses/LICENSE-2.0 12 Stable tag: 3.4. 212 Stable tag: 3.4.3 13 13 14 14 Supercharge your WooCommerce Store with powerful features to pay via Svea Checkout! … … 91 91 == Upgrade Notice == 92 92 93 = 3.4.3 = 94 3.4.3 is a patch release 95 93 96 = 3.4.2 = 94 97 3.4.2 is a patch release … … 417 420 418 421 == Changelog == 422 423 = 3.4.3 2026-01-14 = 424 - Better error handling in order sync. 419 425 420 426 = 3.4.2 2026-01-07 = -
svea-checkout-for-woocommerce/tags/3.4.3/svea-checkout-for-woocommerce.php
r3438045 r3439569 14 14 * Plugin URI: https://wordpress.org/plugins/svea-checkout-for-woocommerce/ 15 15 * Description: Process payments in WooCommerce via Svea Checkout. 16 * Version: 3.4. 216 * Version: 3.4.3 17 17 * Requires Plugins: woocommerce 18 18 * Author: The Generation AB … … 47 47 * Version of plugin 48 48 */ 49 const VERSION = '3.4. 2';49 const VERSION = '3.4.3'; 50 50 51 51 /** -
svea-checkout-for-woocommerce/trunk/inc/Template_Handler.php
r3438045 r3439569 461 461 $svea_order_id = WC()->session->get( 'sco_order_id' ); 462 462 463 if ( empty( $svea_order_id ) ) { 464 return; 465 } 466 463 467 $args = [ 464 468 'status' => 'any', … … 476 480 477 481 // Check if status is final 478 if ( isset( $svea_checkout_module['Status'] ) &&strtoupper( $svea_checkout_module['Status'] ) !== 'FINAL' ) {479 WC_Gateway_Svea_Checkout::log( sprintf( 'Order %s is not in final state, status: %s', $svea_order_id, $svea_checkout_module['Status'] ) );482 if ( ! isset( $svea_checkout_module['Status'] ) || strtoupper( $svea_checkout_module['Status'] ) !== 'FINAL' ) { 483 WC_Gateway_Svea_Checkout::log( sprintf( 'Order %s is not in final state, status: %s', $svea_order_id, $svea_checkout_module['Status'] ?? 'Order not found' ) ); 480 484 wp_safe_redirect( wc_get_checkout_url() ); 481 485 exit; -
svea-checkout-for-woocommerce/trunk/readme.txt
r3438045 r3439569 10 10 License: Apache 2.0 11 11 License URI: https://www.apache.org/licenses/LICENSE-2.0 12 Stable tag: 3.4. 212 Stable tag: 3.4.3 13 13 14 14 Supercharge your WooCommerce Store with powerful features to pay via Svea Checkout! … … 91 91 == Upgrade Notice == 92 92 93 = 3.4.3 = 94 3.4.3 is a patch release 95 93 96 = 3.4.2 = 94 97 3.4.2 is a patch release … … 417 420 418 421 == Changelog == 422 423 = 3.4.3 2026-01-14 = 424 - Better error handling in order sync. 419 425 420 426 = 3.4.2 2026-01-07 = -
svea-checkout-for-woocommerce/trunk/svea-checkout-for-woocommerce.php
r3438045 r3439569 14 14 * Plugin URI: https://wordpress.org/plugins/svea-checkout-for-woocommerce/ 15 15 * Description: Process payments in WooCommerce via Svea Checkout. 16 * Version: 3.4. 216 * Version: 3.4.3 17 17 * Requires Plugins: woocommerce 18 18 * Author: The Generation AB … … 47 47 * Version of plugin 48 48 */ 49 const VERSION = '3.4. 2';49 const VERSION = '3.4.3'; 50 50 51 51 /**
Note: See TracChangeset
for help on using the changeset viewer.