Plugin Directory

Changeset 3469825


Ignore:
Timestamp:
02/26/2026 03:49:40 AM (12 days ago)
Author:
rermis
Message:

v3.0.43 = * Minor php warning fixes

Location:
woo-auto-coupons/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • woo-auto-coupons/trunk/readme.txt

    r3376008 r3469825  
    55License URI: http://www.gnu.org/licenses/gpl-3.0.html
    66Requires at least: 4.6
    7 Tested up to: 6.8
    8 Stable tag: 3.0.42
     7Tested up to: 6.9
     8Stable tag: 3.0.43
    99
    1010Apply WooCommerce Coupons automatically with a fast, lightweight plugin. Set minimum product quantities, apply coupons by URL or automatically.
     
    5050
    5151== Changelog ==
     52= 3.0.43 = * Minor php warning fixes
    5253= 3.0.42 = * Fallback when customer declines cookies
    5354= 3.0.40 = * Fix PHP warnings for strpos
  • woo-auto-coupons/trunk/wac_functions.php

    r3376008 r3469825  
    77Author URI: https://richardlerma.com/contact/
    88Requires Plugins: woocommerce
    9 Version: 3.0.42
     9Version: 3.0.43
    1010Text Domain: woo-auto-coupons
    11 Copyright: (c) 2019-2025 rldd.net - All Rights Reserved
     11Copyright: (c) 2019-2026 rldd.net - All Rights Reserved
    1212License: GPLv3 or later
    1313License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    1616*/
    1717
    18 global $wp_version,$wac_version,$wac_pro_version,$wac_version_type; $wac_version='3.0.42';
     18global $wp_version,$wac_version,$wac_pro_version,$wac_version_type; $wac_version='3.0.43';
    1919$wac_version_type='GPL';
    2020$wac_pro_version=get_option('wac_pro_version');
     
    671671    $wc_qty_ntf=wac_unsr($c->qty_ntf);
    672672    if(empty($wc_qty_ntf)) $wc_qty_ntf=array(1,-1);
    673     $wc_min_ntf=$wc_qty_ntf[0];
    674     $wc_max_ntf=$wc_qty_ntf[1];
     673    $wc_min_ntf=$wc_qty_ntf[0]??1;
     674    $wc_max_ntf=$wc_qty_ntf[1]??-1;
    675675   
    676676    if($c->individual=='yes') $individual_use='[Individual Use]';
Note: See TracChangeset for help on using the changeset viewer.