Changeset 2916413
- Timestamp:
- 05/23/2023 02:52:35 PM (3 years ago)
- Location:
- gelato-integration-for-woocommerce/trunk
- Files:
-
- 3 edited
-
gelato-integration-for-woocommerce.php (modified) (2 diffs)
-
includes/StatusChecker/GelatoStatusChecker.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gelato-integration-for-woocommerce/trunk/gelato-integration-for-woocommerce.php
r2897772 r2916413 5 5 * Plugin URI: https:// 6 6 * Description: This plugin helps to connect your WooCommerce store with Gelato . 7 * Version: 1.1. 07 * Version: 1.1.1 8 8 * Author: Gelato 9 9 * Author URI: https://gelato.com … … 12 12 */ 13 13 14 define('GELATO_VERSION', '1.1. 0');14 define('GELATO_VERSION', '1.1.1'); 15 15 define('GELATO_MINIMUM_WP_VERSION', '4.0'); 16 16 -
gelato-integration-for-woocommerce/trunk/includes/StatusChecker/GelatoStatusChecker.php
r2771476 r2916413 233 233 234 234 if (preg_match('/^(\d+)(.)$/', $memoryLimit, $matches)) { 235 if ($matches[2] == 'M') { 235 if ($matches[2] == 'G') { 236 $memoryLimit = $matches[1] * 1024 * 1024 * 1024; 237 } elseif ($matches[2] == 'M') { 236 238 $memoryLimit = $matches[1] * 1024 * 1024; 237 239 } else { -
gelato-integration-for-woocommerce/trunk/readme.txt
r2897772 r2916413 8 8 Requires at least: 3.8 9 9 Tested up to: 6.2 10 Stable tag: 1.1. 010 Stable tag: 1.1.1 11 11 Requires PHP: 7.0 12 12 License: GPLv2 or later … … 86 86 = 1.1.0 = 87 87 * Added support for Multi-sites 88 89 = 1.1.1 = 90 * Fixed memory limit validation
Note: See TracChangeset
for help on using the changeset viewer.