Changeset 2671873
- Timestamp:
- 02/03/2022 05:22:38 AM (4 years ago)
- Location:
- gelato-integration-for-woocommerce
- Files:
-
- 6 edited
- 1 copied
-
tags/1.0.2 (copied) (copied from gelato-integration-for-woocommerce/trunk)
-
tags/1.0.2/gelato-integration-for-woocommerce.php (modified) (2 diffs)
-
tags/1.0.2/includes/GelatoShipping.php (modified) (1 diff)
-
tags/1.0.2/readme.txt (modified) (2 diffs)
-
trunk/gelato-integration-for-woocommerce.php (modified) (2 diffs)
-
trunk/includes/GelatoShipping.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gelato-integration-for-woocommerce/tags/1.0.2/gelato-integration-for-woocommerce.php
r2582400 r2671873 5 5 * Plugin URI: https:// 6 6 * Description: This plugin helps to connect your WooCommerce store with Gelato. 7 * Version: 1.0. 07 * Version: 1.0.2 8 8 * Author: Gelato 9 9 * Author URI: https://gelato.com … … 12 12 */ 13 13 14 define('GELATO_VERSION', '1.0. 0');14 define('GELATO_VERSION', '1.0.2'); 15 15 define('GELATO_MINIMUM_WP_VERSION', '4.0'); 16 16 define('GELATO_PLUGIN_DIR', plugin_dir_path(__FILE__)); -
gelato-integration-for-woocommerce/tags/1.0.2/includes/GelatoShipping.php
r2659370 r2671873 58 58 { 59 59 new self(); 60 61 if (!get_transient('clean_live_rates')) { 62 self::cleanInvalidCache(); 63 } 64 } 65 66 protected static function cleanInvalidCache() 67 { 68 global $wpdb; 69 70 $wpdb->get_results("DELETE FROM {$wpdb->options} WHERE option_name LIKE '%live-rates-response-%'"); 71 $wpdb->get_results("DELETE FROM {$wpdb->options} WHERE option_name LIKE '%flat-rates-response-%'"); 72 73 set_transient('clean_live_rates', 1); 60 74 } 61 75 -
gelato-integration-for-woocommerce/tags/1.0.2/readme.txt
r2659375 r2671873 8 8 Requires at least: 3.8 9 9 Tested up to: 5.8 10 Stable tag: 1.0. 110 Stable tag: 1.0.2 11 11 Requires PHP: 7.0 12 12 License: GPLv2 or later … … 74 74 * Improvements for Live shipping rates 75 75 * Fixed issue with PHP 7.0 version 76 77 = 1.0.2 = 78 * Improvements for Live shipping rates -
gelato-integration-for-woocommerce/trunk/gelato-integration-for-woocommerce.php
r2582400 r2671873 5 5 * Plugin URI: https:// 6 6 * Description: This plugin helps to connect your WooCommerce store with Gelato. 7 * Version: 1.0. 07 * Version: 1.0.2 8 8 * Author: Gelato 9 9 * Author URI: https://gelato.com … … 12 12 */ 13 13 14 define('GELATO_VERSION', '1.0. 0');14 define('GELATO_VERSION', '1.0.2'); 15 15 define('GELATO_MINIMUM_WP_VERSION', '4.0'); 16 16 define('GELATO_PLUGIN_DIR', plugin_dir_path(__FILE__)); -
gelato-integration-for-woocommerce/trunk/includes/GelatoShipping.php
r2659370 r2671873 58 58 { 59 59 new self(); 60 61 if (!get_transient('clean_live_rates')) { 62 self::cleanInvalidCache(); 63 } 64 } 65 66 protected static function cleanInvalidCache() 67 { 68 global $wpdb; 69 70 $wpdb->get_results("DELETE FROM {$wpdb->options} WHERE option_name LIKE '%live-rates-response-%'"); 71 $wpdb->get_results("DELETE FROM {$wpdb->options} WHERE option_name LIKE '%flat-rates-response-%'"); 72 73 set_transient('clean_live_rates', 1); 60 74 } 61 75 -
gelato-integration-for-woocommerce/trunk/readme.txt
r2659375 r2671873 8 8 Requires at least: 3.8 9 9 Tested up to: 5.8 10 Stable tag: 1.0. 110 Stable tag: 1.0.2 11 11 Requires PHP: 7.0 12 12 License: GPLv2 or later … … 74 74 * Improvements for Live shipping rates 75 75 * Fixed issue with PHP 7.0 version 76 77 = 1.0.2 = 78 * Improvements for Live shipping rates
Note: See TracChangeset
for help on using the changeset viewer.