Plugin Directory

Changeset 2550669


Ignore:
Timestamp:
06/18/2021 11:41:50 PM (5 years ago)
Author:
codisto
Message:

1.3.61

Location:
codistoconnect/tags/1.3.61
Files:
6 copied

Legend:

Unmodified
Added
Removed
  • codistoconnect/tags/1.3.61/changelog.txt

    r2549518 r2550669  
    11*** WooCommerce Google, Amazon & eBay Integration - Channel Cloud by Codisto ***
     2
     32021-06-19 - version 1.3.61
     4* Fix - check for presence of status description
    25
    362021-06-16 - version 1.3.60
  • codistoconnect/tags/1.3.61/connect.php

    r2549518 r2550669  
    66 * Author: Codisto
    77 * Author URI: https://codisto.com/
    8  * Version: 1.3.60
     8 * Version: 1.3.61
    99 * Text Domain: codisto-linq
    1010 * Woo: 3545890:ba4772797f6c2c68c5b8e0b1c7f0c4e2
     
    1515 *
    1616 * @package Codisto LINQ by Codisto
    17  * @version 1.3.60
     17 * @version 1.3.61
    1818 */
    1919
     
    2222}
    2323
    24 define( 'CODISTOCONNECT_VERSION', '1.3.60' );
     24define( 'CODISTOCONNECT_VERSION', '1.3.61' );
    2525define( 'CODISTOCONNECT_RESELLERKEY', '' );
    2626
     
    164164
    165165        $statusheader = preg_split('/ /', $status, 2);
    166         status_header( intval($statusheader[0]), is_set($statusheader[1]) ? $statusheader[1] : '' );
     166        status_header( intval($statusheader[0]), isset($statusheader[1]) ? $statusheader[1] : '' );
    167167        foreach ( $headers as $header => $value ) {
    168168            header( $header.': '.$value );
  • codistoconnect/tags/1.3.61/readme.txt

    r2549518 r2550669  
    44Requires at least: 4.0
    55Tested up to: 5.7.2
    6 Stable tag: 1.3.60
     6Stable tag: 1.3.61
    77Requires PHP: 5.6
    88License: GPLv2
     
    243243== Changelog ==
    244244
     245= 1.3.61 - 18/06/2021 =
     246* Fix - check for presence of status description
     247
    245248= 1.3.60 - 16/06/2021 =
    246249* Update - Wordpress tested up to 5.7.2
Note: See TracChangeset for help on using the changeset viewer.