Plugin Directory

Changeset 2336507


Ignore:
Timestamp:
07/07/2020 07:10:17 AM (6 years ago)
Author:
platformlycom
Message:

fiexed error when create user

Location:
platformly-for-woocommerce/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • platformly-for-woocommerce/trunk/includes/functions.php

    r2304947 r2336507  
    216216}
    217217function platform_wc_unset_wc_session( $session_key ) {
    218     WC()->session->__unset( $session_key );
     218    if(is_object(WC()->session)){
     219        WC()->session->__unset($session_key);
     220    }
    219221}
    220222
  • platformly-for-woocommerce/trunk/platformly-for-woocommerce.php

    r2336028 r2336507  
    44 * Plugin Name: Platform.ly for WooCommerce
    55 * Description: Easily connect WooCommerce to your Platformly CRM, set up abandoned cart campaigns and access detailed customer reporting: lifetime value and more...
    6  * Version: 1.1
     6 * Version: 1.1.1
    77 * Author: Platform.ly
    88 * Author URI: https://www.platform.ly/
     
    2525     * @var string
    2626     */
    27     public $version = '1.0';
     27    public $version = '1.1.1';
    2828
    2929    /**
  • platformly-for-woocommerce/trunk/readme.txt

    r2336028 r2336507  
    123123* Updated abandoned cart functionality
    124124
     125= 1.1.1 =
     126* Minor fix
     127
    125128== Upgrade Notice ==
    126129
     
    130133= 1.1 =
    131134* Updated abandoned cart functionality
     135
     136= 1.1.1 =
     137* Minor fix
Note: See TracChangeset for help on using the changeset viewer.