Changeset 3111693
- Timestamp:
- 07/03/2024 12:37:57 PM (20 months ago)
- Location:
- tradetracker-connect
- Files:
-
- 8 edited
- 1 copied
-
tags/2.2.6 (copied) (copied from tradetracker-connect/trunk)
-
tags/2.2.6/README.md (modified) (2 diffs)
-
tags/2.2.6/README.txt (modified) (2 diffs)
-
tags/2.2.6/includes/class-tradetracker-connect-feed.php (modified) (1 diff)
-
tags/2.2.6/tradetracker-connect.php (modified) (2 diffs)
-
trunk/README.md (modified) (2 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/includes/class-tradetracker-connect-feed.php (modified) (1 diff)
-
trunk/tradetracker-connect.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tradetracker-connect/tags/2.2.6/README.md
r3111230 r3111693 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.5 7 Stable tag: 2.2. 57 Stable tag: 2.2.6 8 8 License: GPLv3 or later 9 9 … … 90 90 91 91 == Changelog == 92 = 2.2.6 = 93 - Added return type check for product list endpoint 94 92 95 = 2.2.5 = 93 96 - Removed legacy WooCommerce API requirement -
tradetracker-connect/tags/2.2.6/README.txt
r3111230 r3111693 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.5 7 Stable tag: 2.2. 57 Stable tag: 2.2.6 8 8 License: GPLv3 or later 9 9 … … 90 90 91 91 == Changelog == 92 = 2.2.6 = 93 - Added return type check for product list endpoint 94 92 95 = 2.2.5 = 93 96 - Removed legacy WooCommerce API requirement -
tradetracker-connect/tags/2.2.6/includes/class-tradetracker-connect-feed.php
r3111230 r3111693 151 151 if (!empty($api_products)) { 152 152 foreach ($api_products as $api_product) { 153 if (!is_array($api_product) && !is_object($api_product)) { 154 if (defined('WP_DEBUG') && WP_DEBUG) { 155 error_log('Invalid product type: ' . gettype($api_product). ': ' . (string) $api_product); 156 } 157 continue; 158 } 153 159 $product = []; 154 160 foreach ($api_product as $field => $value) { -
tradetracker-connect/tags/2.2.6/tradetracker-connect.php
r3111230 r3111693 15 15 * Plugin Name: TradeTracker Connect 16 16 * Description: Seamless WordPress integration for TradeTracker's Merchants. 17 * Version: 2.2. 517 * Version: 2.2.6 18 18 * Author: TradeTracker.com 19 19 * Author URI: https://tradetracker.com … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define('TRADETRACKER_CONNECT_VERSION', '2.2. 5');38 define('TRADETRACKER_CONNECT_VERSION', '2.2.6'); 39 39 define('TRADETRACKER_CONNECT_URL', plugin_dir_url(__FILE__)); 40 40 define('TRADETRACKER_CONNECT_PATH', plugin_dir_path(__FILE__)); -
tradetracker-connect/trunk/README.md
r3111230 r3111693 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.5 7 Stable tag: 2.2. 57 Stable tag: 2.2.6 8 8 License: GPLv3 or later 9 9 … … 90 90 91 91 == Changelog == 92 = 2.2.6 = 93 - Added return type check for product list endpoint 94 92 95 = 2.2.5 = 93 96 - Removed legacy WooCommerce API requirement -
tradetracker-connect/trunk/README.txt
r3111230 r3111693 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.5 7 Stable tag: 2.2. 57 Stable tag: 2.2.6 8 8 License: GPLv3 or later 9 9 … … 90 90 91 91 == Changelog == 92 = 2.2.6 = 93 - Added return type check for product list endpoint 94 92 95 = 2.2.5 = 93 96 - Removed legacy WooCommerce API requirement -
tradetracker-connect/trunk/includes/class-tradetracker-connect-feed.php
r3111230 r3111693 151 151 if (!empty($api_products)) { 152 152 foreach ($api_products as $api_product) { 153 if (!is_array($api_product) && !is_object($api_product)) { 154 if (defined('WP_DEBUG') && WP_DEBUG) { 155 error_log('Invalid product type: ' . gettype($api_product). ': ' . (string) $api_product); 156 } 157 continue; 158 } 153 159 $product = []; 154 160 foreach ($api_product as $field => $value) { -
tradetracker-connect/trunk/tradetracker-connect.php
r3111230 r3111693 15 15 * Plugin Name: TradeTracker Connect 16 16 * Description: Seamless WordPress integration for TradeTracker's Merchants. 17 * Version: 2.2. 517 * Version: 2.2.6 18 18 * Author: TradeTracker.com 19 19 * Author URI: https://tradetracker.com … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define('TRADETRACKER_CONNECT_VERSION', '2.2. 5');38 define('TRADETRACKER_CONNECT_VERSION', '2.2.6'); 39 39 define('TRADETRACKER_CONNECT_URL', plugin_dir_url(__FILE__)); 40 40 define('TRADETRACKER_CONNECT_PATH', plugin_dir_path(__FILE__));
Note: See TracChangeset
for help on using the changeset viewer.