Plugin Directory

Changeset 3288116


Ignore:
Timestamp:
05/06/2025 01:46:52 AM (11 months ago)
Author:
spanrig
Message:

Fixed: Incorrect session initialization resulting in warning in Site Health.

Location:
utm-for-woocommerce
Files:
20 added
3 edited

Legend:

Unmodified
Added
Removed
  • utm-for-woocommerce/trunk/core/includes/classes/class-utm-for-woocommerce-run.php

    r3021399 r3288116  
    142142         */
    143143        public function utmforwoo_capture_utm_and_clid() {
    144             if (!session_id()) {
    145                 session_start();
     144            if (!isset($_SESSION)) {
     145                session_start(['read_and_close' => true]);
    146146            }
    147147       
  • utm-for-woocommerce/trunk/readme.txt

    r3021411 r3288116  
    66Tags: utm, tracking, woocommerce, woo
    77Requires at least: 4.7
    8 Tested up to: 6.4
     8Tested up to: 6.8.1
    99Requires PHP: 7.4
    10 Stable tag: 1.0.1
     10Stable tag: 1.0.2
    1111License: GPLv3 or later
    1212License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    6868== Changelog ==
    6969
     70= 1.0.2: May 6, 2025 =
     71* Fixed: Incorrect session initialization resulting in warning in Site Health.
     72
     73= 1.0.1: January 14, 2024 =
     74* Added compatibility with Woocommerce HPOS
     75
    7076= 1.0.0: January 2, 2024 =
    7177* Birthday of UTM for Woocommerce
    7278
    73 = 1.0.1: January 14, 2024 =
    74 * Added compatibility with Woocommerce HPOS
  • utm-for-woocommerce/trunk/utm-for-woocommerce.php

    r3021399 r3288116  
    66 * @author        Spanrig Technologies
    77 * @license       gplv3-or-later
    8  * @version       1.0.1
     8 * @version       1.0.2
    99 *
    1010 * @wordpress-plugin
     
    1212 * Plugin URI:    https://spanrig.com
    1313 * Description:   Simply track UTM parameters in Woocommerce orders.
    14  * Version:       1.0.1
     14 * Version:       1.0.2
    1515 * Author:        Spanrig Technologies
    1616 * Author URI:    https://www.upwork.com/fl/hncvj
     
    4848
    4949// Plugin version
    50 define( 'UTMFORWOO_VERSION',        '1.0.1' );
     50define( 'UTMFORWOO_VERSION',        '1.0.2' );
    5151
    5252// Plugin Root File
Note: See TracChangeset for help on using the changeset viewer.