Plugin Directory

Changeset 3134792


Ignore:
Timestamp:
08/13/2024 09:28:14 AM (19 months ago)
Author:
shipany
Message:

release v1.1.59

Location:
shipany
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • shipany/tags/1.1.59/readme.txt

    r3129829 r3134792  
    44Requires at least: 4.1
    55Tested up to: 6.5.5
    6 Stable tag: 1.1.58
     6Stable tag: 1.1.59
    77Requires PHP: 5.6
    88License: GPLv2 or later
     
    7171== Changelog ==
    7272
     73= 1.1.59 =
     74- Bug fix
     75
    7376= 1.1.58 =
    7477- Fix writing wrong country on checkout page
  • shipany/tags/1.1.59/shipany-woocommerce.php

    r3129829 r3134792  
    77Plugin URI: http://wordpress.org/plugins/shipany
    88Description: ShipAny one-stop logistics platform interconnects WooCommerce to multiple logistics service providers (including SF Express, Kerry Express, SF Cold-Chain, Alfred Locker, Hongkong Post, SF Locker, Convenience Store, etc.) so merchants can enjoy full-set features of logistics automation which disrupt the manual logistics process and bring E-Commerce to new generation.
    9 Version: 1.1.58
     9Version: 1.1.59
    1010Author: ShipAny
    1111Author URI: https://www.shipany.io
     
    133133    WC()->frontend_includes();
    134134    wc_load_cart();
    135     $useShippingAsBilling = wc_clean($_POST["useShippingAsBilling"]) == 'yes';
     135    $useShippingAsBilling = false;
     136    if(isset($_POST["useShippingAsBilling"]) && $_POST["useShippingAsBilling"]){
     137        $useShippingAsBilling = wc_clean($_POST["useShippingAsBilling"]) == 'yes';
     138    }
    136139    $region = strtoupper(wc_clean($_POST["region"]));
    137140    $bypass_billing_address = ShipanyHelper::get_settings('shipany_bypass_billing_address');
     
    673676    class SHIPANY_WC {
    674677        public static $list;
    675         private $version = "1.1.58";
     678        private $version = "1.1.59";
    676679
    677680        protected static $_instance = null;
  • shipany/trunk/readme.txt

    r3129829 r3134792  
    44Requires at least: 4.1
    55Tested up to: 6.5.5
    6 Stable tag: 1.1.58
     6Stable tag: 1.1.59
    77Requires PHP: 5.6
    88License: GPLv2 or later
     
    7171== Changelog ==
    7272
     73= 1.1.59 =
     74- Bug fix
     75
    7376= 1.1.58 =
    7477- Fix writing wrong country on checkout page
  • shipany/trunk/shipany-woocommerce.php

    r3129829 r3134792  
    77Plugin URI: http://wordpress.org/plugins/shipany
    88Description: ShipAny one-stop logistics platform interconnects WooCommerce to multiple logistics service providers (including SF Express, Kerry Express, SF Cold-Chain, Alfred Locker, Hongkong Post, SF Locker, Convenience Store, etc.) so merchants can enjoy full-set features of logistics automation which disrupt the manual logistics process and bring E-Commerce to new generation.
    9 Version: 1.1.58
     9Version: 1.1.59
    1010Author: ShipAny
    1111Author URI: https://www.shipany.io
     
    133133    WC()->frontend_includes();
    134134    wc_load_cart();
    135     $useShippingAsBilling = wc_clean($_POST["useShippingAsBilling"]) == 'yes';
     135    $useShippingAsBilling = false;
     136    if(isset($_POST["useShippingAsBilling"]) && $_POST["useShippingAsBilling"]){
     137        $useShippingAsBilling = wc_clean($_POST["useShippingAsBilling"]) == 'yes';
     138    }
    136139    $region = strtoupper(wc_clean($_POST["region"]));
    137140    $bypass_billing_address = ShipanyHelper::get_settings('shipany_bypass_billing_address');
     
    673676    class SHIPANY_WC {
    674677        public static $list;
    675         private $version = "1.1.58";
     678        private $version = "1.1.59";
    676679
    677680        protected static $_instance = null;
Note: See TracChangeset for help on using the changeset viewer.