Changeset 2077011
- Timestamp:
- 04/29/2019 01:06:39 PM (7 years ago)
- Location:
- ing-psp/trunk
- Files:
-
- 5 edited
-
CHANGELOG.md (modified) (1 diff)
-
README.md (modified) (1 diff)
-
classes/class-wc-ingpsp-helper.php (modified) (1 diff)
-
ingpsp.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ing-psp/trunk/CHANGELOG.md
r2043930 r2077011 1 1 # Changelog WooCommerce 2 3 ** 1.3.9 ** 4 * Don't reduce stock if order was retried 2 5 3 6 ** 1.3.8 ** -
ing-psp/trunk/README.md
r2043930 r2077011 15 15 16 16 ## Version number 17 Version 1.3. 817 Version 1.3.9 18 18 19 19 ## Pre-requisites to install the plug-ins -
ing-psp/trunk/classes/class-wc-ingpsp-helper.php
r1962294 r2077011 393 393 { 394 394 if (version_compare(get_option('woocommerce_version'), '3.0', '>=')) { 395 wc_reduce_stock_levels($order->get_id()); 395 if ( ! get_post_meta( $order->id, '_order_stock_reduced', $single = true ) ) 396 wc_reduce_stock_levels($order->get_id()); 396 397 } else { 397 $order->reduce_order_stock(); 398 if ( ! get_post_meta( $order->id, '_order_stock_reduced', $single = true ) ) 399 $order->reduce_order_stock(); 398 400 } 399 401 } -
ing-psp/trunk/ingpsp.php
r2043930 r2077011 5 5 * Plugin URI: https://www.ing.nl/ 6 6 * Description: ING WooCommerce plugin for ING Kassa Compleet and ING ePay markets. 7 * Version: 1.3. 87 * Version: 1.3.9 8 8 * Author: Ginger Payments 9 9 * Author URI: https://www.gingerpayments.com/ … … 20 20 * Define ING PSP plugin version 21 21 */ 22 define('INGPSP_PLUGIN_VERSION', 'WooCommerce v1.3. 8');22 define('INGPSP_PLUGIN_VERSION', 'WooCommerce v1.3.9'); 23 23 24 24 add_action('plugins_loaded', 'woocommerce_ingpsp_init', 0); -
ing-psp/trunk/readme.txt
r2043930 r2077011 4 4 Contributors: ingpsp, gingerpayments 5 5 Requires at least: 4.0 6 Tested up to: 4.9.67 Stable tag: 1.3. 86 Tested up to: 5.1.1 7 Stable tag: 1.3.9 8 8 License: The MIT License (MIT) 9 9 License URI: https://opensource.org/licenses/MIT … … 104 104 == Changelog == 105 105 106 = 1.3. 8=106 = 1.3.9 = 107 107 * Fix for DOB check 108 108
Note: See TracChangeset
for help on using the changeset viewer.