Plugin Directory

Changeset 2999048


Ignore:
Timestamp:
11/20/2023 03:46:10 PM (2 years ago)
Author:
equalserving
Message:

Verify compatibility with Wordpress version 6.4.1.

Location:
es-woocommerce-activecampaign/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • es-woocommerce-activecampaign/trunk/class-es-wc-integration-activecampaign.php

    r2995476 r2999048  
    1111 * @class       ES_WC_Integration_ActiveCampaign
    1212 * @extends     WC_Integration
    13  * @version     2.0.3
     13 * @version     2.1.1
    1414 * @package     WooCommerce ActiveCampaign
    1515 * @author      EqualServing
     
    10401040        if ($code === 200) {
    10411041            $body_object = json_decode($response["body"]);
    1042             if ($body_object->result_code === 0) {
     1042            if (!isset($body_object->result_code) || $body_object->result_code === 0) {
    10431043                $this->log_this("error", "URL: ".$response["url"]." Result_code: ".$body_object->result_code." Result_message: ".$body_object->result_message);
    10441044                $retval = FALSE;
  • es-woocommerce-activecampaign/trunk/es-woocommerce-activecampaign.php

    r2995476 r2999048  
    44Plugin URI: https://www.equalserving.com/wordpress-plugins-equalserving/woocommerce-with-activecampaign/
    55Description: Integrates Woocommerce with ActiveCampaign by adding customers to ActiveCampaign at time of purchase.
    6 Version: 2.1.0
     6Version: 2.1.1
    77Author: EqualServing.com
    88Author URI: http://www.equalserving.com/
     9Tested up to: 6.4.1
    910WC requires at least: 3.6
    10 WC tested up to: 8.2.2
     11WC tested up to: 8.3
    1112*/
    1213
  • es-woocommerce-activecampaign/trunk/readme.txt

    r2995476 r2999048  
    77Requires at least: 4.4
    88Requires PHP: 5.3
    9 Tested up to: 8.2.2
    10 Stable tag: 2.1.0
     9Tested up to: 6.4.1
     10Stable tag: 2.1.1
     11WC requires at least: 3.6
     12WC tested up to: 8.3
    1113
    1214Easily add ActiveCampaign integration to WooCommerce.
     
    6870
    6971== Changelog ==
     72
     73= 2.1.1 =
     74
     75Release Date: Nov 20, 2023
     76
     77* Verify compatibility with Wordpress version 6.4.1.
    7078
    7179= 2.1.0 =
Note: See TracChangeset for help on using the changeset viewer.