Plugin Directory

Changeset 2999258


Ignore:
Timestamp:
11/20/2023 09:26:13 PM (2 years ago)
Author:
equalserving
Message:

Modify error handling.

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

Legend:

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

    r2999048 r2999258  
    1111 * @class       ES_WC_Integration_ActiveCampaign
    1212 * @extends     WC_Integration
    13  * @version     2.1.1
     13 * @version     2.1.2
    1414 * @package     WooCommerce ActiveCampaign
    1515 * @author      EqualServing
     
    10401040        if ($code === 200) {
    10411041            $body_object = json_decode($response["body"]);
    1042             if (!isset($body_object->result_code) || $body_object->result_code === 0) {
     1042            if (isset($body_object->response_code) && $body_object->response_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

    r2999048 r2999258  
    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.1
     6Version: 2.1.2
    77Author: EqualServing.com
    88Author URI: http://www.equalserving.com/
  • es-woocommerce-activecampaign/trunk/readme.txt

    r2999048 r2999258  
    88Requires PHP: 5.3
    99Tested up to: 6.4.1
    10 Stable tag: 2.1.1
     10Stable tag: 2.1.2
    1111WC requires at least: 3.6
    1212WC tested up to: 8.3
     
    7070
    7171== Changelog ==
     72
     73= 2.1.2 =
     74
     75Release Date: Nov 20, 2023
     76
     77* Modify error handling.
    7278
    7379= 2.1.1 =
Note: See TracChangeset for help on using the changeset viewer.