Changeset 3440121
- Timestamp:
- 01/15/2026 08:25:58 AM (3 months ago)
- Location:
- svea-checkout-for-woocommerce/tags/3.3.9
- Files:
-
- 4 edited
- 1 copied
-
. (copied) (copied from svea-checkout-for-woocommerce/tags/3.3.8)
-
inc/Template_Handler.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
-
svea-checkout-for-woocommerce.php (modified) (2 diffs)
-
vendor/composer/autoload_static.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
svea-checkout-for-woocommerce/tags/3.3.9/inc/Template_Handler.php
r3324844 r3440121 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.3.9/readme.txt
r3393639 r3440121 10 10 License: Apache 2.0 11 11 License URI: https://www.apache.org/licenses/LICENSE-2.0 12 Stable tag: 3.3. 812 Stable tag: 3.3.9 13 13 14 14 Supercharge your WooCommerce Store with powerful features to pay via Svea Checkout! … … 91 91 == Upgrade Notice == 92 92 93 = 3.3.9 = 94 3.3.9 is a patch release 95 93 96 = 3.3.8 = 94 97 3.3.8 is a patch release … … 408 411 409 412 == Changelog == 413 414 = 3.3.9 2026-01-14 = 415 - Better error handling in order sync. 410 416 411 417 = 3.3.8 2025-11-11 = -
svea-checkout-for-woocommerce/tags/3.3.9/svea-checkout-for-woocommerce.php
r3393639 r3440121 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.3. 816 * Version: 3.3.9 17 17 * Requires Plugins: woocommerce 18 18 * Author: The Generation AB … … 47 47 * Version of plugin 48 48 */ 49 const VERSION = '3.3. 8';49 const VERSION = '3.3.9'; 50 50 51 51 /** -
svea-checkout-for-woocommerce/tags/3.3.9/vendor/composer/autoload_static.php
r3320066 r3440121 14 14 15 15 public static $prefixLengthsPsr4 = array ( 16 'S' => 16 'S' => 17 17 array ( 18 18 'Svea_Checkout_For_Woocommerce\\' => 30, … … 20 20 'Svea\\Checkout\\' => 14, 21 21 ), 22 'P' => 22 'P' => 23 23 array ( 24 24 'Psr\\Http\\Message\\' => 17, 25 25 'Psr\\Http\\Client\\' => 16, 26 26 ), 27 'G' => 27 'G' => 28 28 array ( 29 29 'GuzzleHttp\\Psr7\\' => 16, … … 34 34 35 35 public static $prefixDirsPsr4 = array ( 36 'Svea_Checkout_For_Woocommerce\\' => 36 'Svea_Checkout_For_Woocommerce\\' => 37 37 array ( 38 38 0 => __DIR__ . '/../..' . '/inc', 39 39 ), 40 'Svea\\Instore\\' => 40 'Svea\\Instore\\' => 41 41 array ( 42 42 0 => __DIR__ . '/..' . '/sveaekonomi/php-instore/lib', 43 43 ), 44 'Svea\\Checkout\\' => 44 'Svea\\Checkout\\' => 45 45 array ( 46 46 0 => __DIR__ . '/..' . '/sveaekonomi/checkout/src', 47 47 ), 48 'Psr\\Http\\Message\\' => 48 'Psr\\Http\\Message\\' => 49 49 array ( 50 50 0 => __DIR__ . '/..' . '/psr/http-factory/src', 51 51 1 => __DIR__ . '/..' . '/psr/http-message/src', 52 52 ), 53 'Psr\\Http\\Client\\' => 53 'Psr\\Http\\Client\\' => 54 54 array ( 55 55 0 => __DIR__ . '/..' . '/psr/http-client/src', 56 56 ), 57 'GuzzleHttp\\Psr7\\' => 57 'GuzzleHttp\\Psr7\\' => 58 58 array ( 59 59 0 => __DIR__ . '/..' . '/guzzlehttp/psr7/src', 60 60 ), 61 'GuzzleHttp\\Promise\\' => 61 'GuzzleHttp\\Promise\\' => 62 62 array ( 63 63 0 => __DIR__ . '/..' . '/guzzlehttp/promises/src', 64 64 ), 65 'GuzzleHttp\\' => 65 'GuzzleHttp\\' => 66 66 array ( 67 67 0 => __DIR__ . '/..' . '/guzzlehttp/guzzle/src',
Note: See TracChangeset
for help on using the changeset viewer.