Plugin Directory

Changeset 3440121


Ignore:
Timestamp:
01/15/2026 08:25:58 AM (3 months ago)
Author:
thegeneration
Message:

Tagging version 3.3.9

Location:
svea-checkout-for-woocommerce/tags/3.3.9
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • svea-checkout-for-woocommerce/tags/3.3.9/inc/Template_Handler.php

    r3324844 r3440121  
    461461            $svea_order_id = WC()->session->get( 'sco_order_id' );
    462462
     463            if ( empty( $svea_order_id ) ) {
     464                return;
     465            }
     466
    463467            $args = [
    464468                'status'     => 'any',
     
    476480
    477481                // 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' ) );
    480484                    wp_safe_redirect( wc_get_checkout_url() );
    481485                    exit;
  • svea-checkout-for-woocommerce/tags/3.3.9/readme.txt

    r3393639 r3440121  
    1010License: Apache 2.0
    1111License URI: https://www.apache.org/licenses/LICENSE-2.0
    12 Stable tag: 3.3.8
     12Stable tag: 3.3.9
    1313
    1414Supercharge your WooCommerce Store with powerful features to pay via Svea Checkout!
     
    9191== Upgrade Notice ==
    9292
     93= 3.3.9 =
     943.3.9 is a patch release
     95
    9396= 3.3.8 =
    94973.3.8 is a patch release
     
    408411
    409412== Changelog ==
     413
     414= 3.3.9 2026-01-14 =
     415- Better error handling in order sync.
    410416
    411417= 3.3.8 2025-11-11 =
  • svea-checkout-for-woocommerce/tags/3.3.9/svea-checkout-for-woocommerce.php

    r3393639 r3440121  
    1414 * Plugin URI: https://wordpress.org/plugins/svea-checkout-for-woocommerce/
    1515 * Description: Process payments in WooCommerce via Svea Checkout.
    16  * Version: 3.3.8
     16 * Version: 3.3.9
    1717 * Requires Plugins: woocommerce
    1818 * Author: The Generation AB
     
    4747         * Version of plugin
    4848         */
    49         const VERSION = '3.3.8';
     49        const VERSION = '3.3.9';
    5050
    5151        /**
  • svea-checkout-for-woocommerce/tags/3.3.9/vendor/composer/autoload_static.php

    r3320066 r3440121  
    1414
    1515    public static $prefixLengthsPsr4 = array (
    16         'S' => 
     16        'S' =>
    1717        array (
    1818            'Svea_Checkout_For_Woocommerce\\' => 30,
     
    2020            'Svea\\Checkout\\' => 14,
    2121        ),
    22         'P' => 
     22        'P' =>
    2323        array (
    2424            'Psr\\Http\\Message\\' => 17,
    2525            'Psr\\Http\\Client\\' => 16,
    2626        ),
    27         'G' => 
     27        'G' =>
    2828        array (
    2929            'GuzzleHttp\\Psr7\\' => 16,
     
    3434
    3535    public static $prefixDirsPsr4 = array (
    36         'Svea_Checkout_For_Woocommerce\\' => 
     36        'Svea_Checkout_For_Woocommerce\\' =>
    3737        array (
    3838            0 => __DIR__ . '/../..' . '/inc',
    3939        ),
    40         'Svea\\Instore\\' => 
     40        'Svea\\Instore\\' =>
    4141        array (
    4242            0 => __DIR__ . '/..' . '/sveaekonomi/php-instore/lib',
    4343        ),
    44         'Svea\\Checkout\\' => 
     44        'Svea\\Checkout\\' =>
    4545        array (
    4646            0 => __DIR__ . '/..' . '/sveaekonomi/checkout/src',
    4747        ),
    48         'Psr\\Http\\Message\\' => 
     48        'Psr\\Http\\Message\\' =>
    4949        array (
    5050            0 => __DIR__ . '/..' . '/psr/http-factory/src',
    5151            1 => __DIR__ . '/..' . '/psr/http-message/src',
    5252        ),
    53         'Psr\\Http\\Client\\' => 
     53        'Psr\\Http\\Client\\' =>
    5454        array (
    5555            0 => __DIR__ . '/..' . '/psr/http-client/src',
    5656        ),
    57         'GuzzleHttp\\Psr7\\' => 
     57        'GuzzleHttp\\Psr7\\' =>
    5858        array (
    5959            0 => __DIR__ . '/..' . '/guzzlehttp/psr7/src',
    6060        ),
    61         'GuzzleHttp\\Promise\\' => 
     61        'GuzzleHttp\\Promise\\' =>
    6262        array (
    6363            0 => __DIR__ . '/..' . '/guzzlehttp/promises/src',
    6464        ),
    65         'GuzzleHttp\\' => 
     65        'GuzzleHttp\\' =>
    6666        array (
    6767            0 => __DIR__ . '/..' . '/guzzlehttp/guzzle/src',
Note: See TracChangeset for help on using the changeset viewer.