Plugin Directory

Changeset 2007746


Ignore:
Timestamp:
01/07/2019 01:12:49 PM (7 years ago)
Author:
SmartSend
Message:

Tagging version 8.0.11

Location:
smart-send-logistics
Files:
14 deleted
5 edited
15 copied

Legend:

Unmodified
Added
Removed
  • smart-send-logistics/tags/8.0.11/includes/class-ss-shipping-shipment.php

    r1975504 r2007746  
    184184                        // Ensure id is string and not int
    185185                        $product_id = $item['variation_id'];
    186                         $product_sku = empty($product_variation->get_sku()) ? strval($item['variation_id']) : $product_variation->get_sku();
     186                        $product_sku = $product_variation->get_sku() ? $product_variation->get_sku() : strval($item['variation_id']);
    187187
    188188                        // $product_attribute = wc_get_product_variation_attributes($item['variation_id']);
     
    193193                        $product_id = $item['product_id'];
    194194                        // Ensure id is string and not int
    195                         $product_sku = empty($product->get_sku()) ? strval($item['product_id']) : $product->get_sku();
     195                        $product_sku = $product->get_sku() ? $product->get_sku() : strval($item['product_id']);
    196196                    }
    197197
  • smart-send-logistics/tags/8.0.11/includes/lib/Smartsend/Models/Shipment/Agent.php

    r1949668 r2007746  
    3737        }
    3838        if(isset($receiver['name_line2'])) {
    39             $this->setNameLine2(receiver['name_line2']);
     39            $this->setNameLine2($receiver['name_line2']);
    4040        }
    4141        if(isset($receiver['address_line1'])) {
  • smart-send-logistics/tags/8.0.11/readme.txt

    r1984581 r2007746  
    99Requires at least: 3.0.1
    1010Tested up to: 5.0
    11 Stable tag: 8.0.10
     11Stable tag: 8.0.11
    1212License: GNU General Public License v3.0
    1313License URI: http://www.gnu.org/licenses/gpl-3.0.html
    14 WC requires at least: 2.6.0
     14WC requires at least: 2.7.0
    1515WC tested up to: 3.5
    1616Requires PHP: 5.6.0
     
    190190== Changelog ==
    191191
     192= 8.0.11 =
     193* Bugfix: PHP error when using name_line2 field for WooCommerce orders
     194* Bugfix: PHP error for older PHP versions
     195* Change WooCommerce minimum requirement to WC 2.7
     196
    192197= 8.0.10 =
    193198* Add convenience wrapper for pick-up point function
  • smart-send-logistics/tags/8.0.11/smart-send-logistics.php

    r1984581 r2007746  
    77 * Author URI: https://www.smartsend.io
    88 * Text Domain: smart-send-logistics
    9  * Version: 8.0.10
     9 * Version: 8.0.11
    1010 * WC requires at least: 2.6.0
    1111 * WC tested up to: 3.5
     
    3535    {
    3636
    37         private $version = "8.0.10";
     37        private $version = "8.0.11";
    3838
    3939        /**
  • smart-send-logistics/trunk/includes/class-ss-shipping-shipment.php

    r1975504 r2007746  
    184184                        // Ensure id is string and not int
    185185                        $product_id = $item['variation_id'];
    186                         $product_sku = empty($product_variation->get_sku()) ? strval($item['variation_id']) : $product_variation->get_sku();
     186                        $product_sku = $product_variation->get_sku() ? $product_variation->get_sku() : strval($item['variation_id']);
    187187
    188188                        // $product_attribute = wc_get_product_variation_attributes($item['variation_id']);
     
    193193                        $product_id = $item['product_id'];
    194194                        // Ensure id is string and not int
    195                         $product_sku = empty($product->get_sku()) ? strval($item['product_id']) : $product->get_sku();
     195                        $product_sku = $product->get_sku() ? $product->get_sku() : strval($item['product_id']);
    196196                    }
    197197
  • smart-send-logistics/trunk/includes/lib/Smartsend/Models/Shipment/Agent.php

    r1949668 r2007746  
    3737        }
    3838        if(isset($receiver['name_line2'])) {
    39             $this->setNameLine2(receiver['name_line2']);
     39            $this->setNameLine2($receiver['name_line2']);
    4040        }
    4141        if(isset($receiver['address_line1'])) {
  • smart-send-logistics/trunk/readme.txt

    r1984581 r2007746  
    99Requires at least: 3.0.1
    1010Tested up to: 5.0
    11 Stable tag: 8.0.10
     11Stable tag: 8.0.11
    1212License: GNU General Public License v3.0
    1313License URI: http://www.gnu.org/licenses/gpl-3.0.html
    14 WC requires at least: 2.6.0
     14WC requires at least: 2.7.0
    1515WC tested up to: 3.5
    1616Requires PHP: 5.6.0
     
    190190== Changelog ==
    191191
     192= 8.0.11 =
     193* Bugfix: PHP error when using name_line2 field for WooCommerce orders
     194* Bugfix: PHP error for older PHP versions
     195* Change WooCommerce minimum requirement to WC 2.7
     196
    192197= 8.0.10 =
    193198* Add convenience wrapper for pick-up point function
  • smart-send-logistics/trunk/smart-send-logistics.php

    r1984581 r2007746  
    77 * Author URI: https://www.smartsend.io
    88 * Text Domain: smart-send-logistics
    9  * Version: 8.0.10
     9 * Version: 8.0.11
    1010 * WC requires at least: 2.6.0
    1111 * WC tested up to: 3.5
     
    3535    {
    3636
    37         private $version = "8.0.10";
     37        private $version = "8.0.11";
    3838
    3939        /**
Note: See TracChangeset for help on using the changeset viewer.