Changeset 2549518
- Timestamp:
- 06/17/2021 08:04:39 AM (5 years ago)
- Location:
- codistoconnect/trunk
- Files:
-
- 3 edited
-
changelog.txt (modified) (1 diff)
-
connect.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
codistoconnect/trunk/changelog.txt
r2545424 r2549518 1 1 *** WooCommerce Google, Amazon & eBay Integration - Channel Cloud by Codisto *** 2 3 2021-06-16 - version 1.3.60 4 * Update - Wordpress tested up to 5.7.2 5 * Update - woocommerce tested up to 5.4.1 6 * Update - status header updates to improve compatibility 7 8 2021-06-09 - version 1.3.59 9 * Update - prevent completed orders being set back to processing 2 10 3 11 2021-06-09 - version 1.3.58 -
codistoconnect/trunk/connect.php
r2545438 r2549518 6 6 * Author: Codisto 7 7 * Author URI: https://codisto.com/ 8 * Version: 1.3. 588 * Version: 1.3.60 9 9 * Text Domain: codisto-linq 10 10 * Woo: 3545890:ba4772797f6c2c68c5b8e0b1c7f0c4e2 11 11 * WC requires at least: 2.0.0 12 * WC tested up to: 4.9.112 * WC tested up to: 5.4.1 13 13 * License: GPLv2 14 14 * License URI: http://www.gnu.org/licenses/gpl-2.0.html 15 15 * 16 16 * @package Codisto LINQ by Codisto 17 * @version 1.3. 5817 * @version 1.3.60 18 18 */ 19 19 … … 22 22 } 23 23 24 define( 'CODISTOCONNECT_VERSION', '1.3. 58' );24 define( 'CODISTOCONNECT_VERSION', '1.3.60' ); 25 25 define( 'CODISTOCONNECT_RESELLERKEY', '' ); 26 26 … … 163 163 } 164 164 165 status_header( $status ); 165 $statusheader = preg_split('/ /', $status, 2); 166 status_header( intval($statusheader[0]), is_set($statusheader[1]) ? $statusheader[1] : '' ); 166 167 foreach ( $headers as $header => $value ) { 167 168 header( $header.': '.$value ); -
codistoconnect/trunk/readme.txt
r2545424 r2549518 3 3 Tags: ecommerce, e-commerce, woocommerce, ebay, amazon, paypal, integration, multi-channel, listings, store, sales, sell, shop 4 4 Requires at least: 4.0 5 Tested up to: 5. 6.06 Stable tag: 1.3. 585 Tested up to: 5.7.2 6 Stable tag: 1.3.60 7 7 Requires PHP: 5.6 8 8 License: GPLv2 … … 243 243 == Changelog == 244 244 245 = 1.3.60 - 16/06/2021 = 246 * Update - Wordpress tested up to 5.7.2 247 * Update - woocommerce tested up to 5.4.1 248 * Update - status header updates to improve compatibility 249 250 = 1.3.59 - 09/06/2021 = 251 * Update - prevent completed orders being set back to processing 252 245 253 = 1.3.58 - 09/06/2021 = 246 254 * Update - prevent completed orders being set back to processing
Note: See TracChangeset
for help on using the changeset viewer.