Plugin Directory

Changeset 3471069


Ignore:
Timestamp:
02/27/2026 12:17:05 PM (5 weeks ago)
Author:
thegeneration
Message:

Tagging version 3.6.1

Location:
svea-checkout-for-woocommerce
Files:
1 deleted
3 edited
45 copied

Legend:

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

    r3454688 r3471069  
    274274            $wc_order = wc_get_order( $current_order_id );
    275275
    276             if ( $wc_order && $wc_order->get_meta( '_svea_co_order_id' ) !== $current_sco_id ) {
     276            if ( $wc_order && (string) $wc_order->get_meta( '_svea_co_order_id' ) !== (string) $current_sco_id ) {
    277277                // Remove the current order awaiting payment ID and create a new order
    278278                WC()->session->set( 'order_awaiting_payment', null );
  • svea-checkout-for-woocommerce/tags/3.6.1/readme.txt

    r3468473 r3471069  
    1010License: Apache 2.0
    1111License URI: https://www.apache.org/licenses/LICENSE-2.0
    12 Stable tag: 3.6.0
     12Stable tag: 3.6.1
    1313
    1414Supercharge your WooCommerce Store with powerful features to pay via Svea Checkout!
     
    101101== Upgrade Notice ==
    102102
     103= 3.6.1 =
     1043.6.1 is a patch release
     105
    103106= 3.6.0 =
    1041073.6.0 is a minor release
     
    436439
    437440== Changelog ==
     441
     442= 3.6.1 2026-02-27 =
     443- Ensure that the Svea Checkout order ID is compared as a string to prevent issues with type mismatches creating multiple orders if the customer starts the payment process multiple times.
    438444
    439445= 3.6.0 2026-02-24 =
  • svea-checkout-for-woocommerce/tags/3.6.1/svea-checkout-for-woocommerce.php

    r3468473 r3471069  
    1515 * Plugin URI: https://wordpress.org/plugins/svea-checkout-for-woocommerce/
    1616 * Description: Process payments in WooCommerce via Svea Checkout.
    17  * Version: 3.6.0
     17 * Version: 3.6.1
    1818 * Requires Plugins: woocommerce
    1919 * Author: The Generation AB
     
    4848         * Version of plugin
    4949         */
    50         const VERSION = '3.6.0';
     50        const VERSION = '3.6.1';
    5151
    5252        /**
  • svea-checkout-for-woocommerce/trunk/inc/Template_Handler.php

    r3454688 r3471069  
    274274            $wc_order = wc_get_order( $current_order_id );
    275275
    276             if ( $wc_order && $wc_order->get_meta( '_svea_co_order_id' ) !== $current_sco_id ) {
     276            if ( $wc_order && (string) $wc_order->get_meta( '_svea_co_order_id' ) !== (string) $current_sco_id ) {
    277277                // Remove the current order awaiting payment ID and create a new order
    278278                WC()->session->set( 'order_awaiting_payment', null );
  • svea-checkout-for-woocommerce/trunk/readme.txt

    r3468473 r3471069  
    1010License: Apache 2.0
    1111License URI: https://www.apache.org/licenses/LICENSE-2.0
    12 Stable tag: 3.6.0
     12Stable tag: 3.6.1
    1313
    1414Supercharge your WooCommerce Store with powerful features to pay via Svea Checkout!
     
    101101== Upgrade Notice ==
    102102
     103= 3.6.1 =
     1043.6.1 is a patch release
     105
    103106= 3.6.0 =
    1041073.6.0 is a minor release
     
    436439
    437440== Changelog ==
     441
     442= 3.6.1 2026-02-27 =
     443- Ensure that the Svea Checkout order ID is compared as a string to prevent issues with type mismatches creating multiple orders if the customer starts the payment process multiple times.
    438444
    439445= 3.6.0 2026-02-24 =
  • svea-checkout-for-woocommerce/trunk/svea-checkout-for-woocommerce.php

    r3468473 r3471069  
    1515 * Plugin URI: https://wordpress.org/plugins/svea-checkout-for-woocommerce/
    1616 * Description: Process payments in WooCommerce via Svea Checkout.
    17  * Version: 3.6.0
     17 * Version: 3.6.1
    1818 * Requires Plugins: woocommerce
    1919 * Author: The Generation AB
     
    4848         * Version of plugin
    4949         */
    50         const VERSION = '3.6.0';
     50        const VERSION = '3.6.1';
    5151
    5252        /**
Note: See TracChangeset for help on using the changeset viewer.