Changeset 2550670
- Timestamp:
- 06/18/2021 11:42:06 PM (5 years ago)
- Location:
- codistoconnect/trunk
- Files:
-
- 3 edited
-
changelog.txt (modified) (1 diff)
-
connect.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
codistoconnect/trunk/changelog.txt
r2549518 r2550670 1 1 *** WooCommerce Google, Amazon & eBay Integration - Channel Cloud by Codisto *** 2 3 2021-06-19 - version 1.3.61 4 * Fix - check for presence of status description 2 5 3 6 2021-06-16 - version 1.3.60 -
codistoconnect/trunk/connect.php
r2549518 r2550670 6 6 * Author: Codisto 7 7 * Author URI: https://codisto.com/ 8 * Version: 1.3.6 08 * Version: 1.3.61 9 9 * Text Domain: codisto-linq 10 10 * Woo: 3545890:ba4772797f6c2c68c5b8e0b1c7f0c4e2 … … 15 15 * 16 16 * @package Codisto LINQ by Codisto 17 * @version 1.3.6 017 * @version 1.3.61 18 18 */ 19 19 … … 22 22 } 23 23 24 define( 'CODISTOCONNECT_VERSION', '1.3.6 0' );24 define( 'CODISTOCONNECT_VERSION', '1.3.61' ); 25 25 define( 'CODISTOCONNECT_RESELLERKEY', '' ); 26 26 … … 164 164 165 165 $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] : '' ); 167 167 foreach ( $headers as $header => $value ) { 168 168 header( $header.': '.$value ); -
codistoconnect/trunk/readme.txt
r2549518 r2550670 4 4 Requires at least: 4.0 5 5 Tested up to: 5.7.2 6 Stable tag: 1.3.6 06 Stable tag: 1.3.61 7 7 Requires PHP: 5.6 8 8 License: GPLv2 … … 243 243 == Changelog == 244 244 245 = 1.3.61 - 18/06/2021 = 246 * Fix - check for presence of status description 247 245 248 = 1.3.60 - 16/06/2021 = 246 249 * Update - Wordpress tested up to 5.7.2
Note: See TracChangeset
for help on using the changeset viewer.