Changeset 2539713
- Timestamp:
- 05/30/2021 12:14:39 PM (5 years ago)
- Location:
- delyvax/trunk
- Files:
-
- 3 edited
-
delyvax.php (modified) (2 diffs)
-
includes/delyvax-webhook.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
delyvax/trunk/delyvax.php
r2539396 r2539713 4 4 Plugin URI: https://delyva.com/solutions 5 5 description: The official DelyvaX plugin helps store owners to integrate WooCommerce with [DelyvaX](https://delyva.com/solutions) for seamless service comparison and order processing. 6 Version: 1.1. 76 Version: 1.1.8 7 7 Author: DelyvaX 8 8 Author URI: https://delyva.com/solutions … … 13 13 defined( 'ABSPATH' ) or die( 'No script kiddies please!' ); 14 14 define('DELYVAX_API_ENDPOINT', 'https://api.delyva.app/'); 15 define('DELYVAX_PLUGIN_VERSION', '1.1. 7');15 define('DELYVAX_PLUGIN_VERSION', '1.1.8'); 16 16 17 17 require_once plugin_dir_path(__FILE__) . 'functions.php'; -
delyvax/trunk/includes/delyvax-webhook.php
r2539396 r2539713 102 102 $settings = get_option( 'woocommerce_delyvax_settings'); 103 103 104 if( isset($data['orderId']) && isset($data['consignmentNo']) && isset($data['statusCode']) && $settings['customer_id'] === $data['customerId']) 104 if( isset($data['orderId']) && isset($data['consignmentNo']) && isset($data['statusCode']) 105 && intval($settings['customer_id']) === intval($data['customerId'])) 105 106 { 106 107 if ($settings['api_webhook_enable'] == 'yes') { -
delyvax/trunk/readme.txt
r2539396 r2539713 4 4 Requires at least: 5.4 5 5 Tested up to: 5.7 6 Stable tag: 1.1. 76 Stable tag: 1.1.8 7 7 Requires PHP: 7.2 8 8 License: GPLv3 … … 34 34 == Changelog == 35 35 36 = 1.1.8 - May 30 2021 = Important Update! Fix webhook failed to verify customerId. 36 37 = 1.1.7 - May 28 2021 = Bug fixes. Refactor webhook function. 37 38 = 1.1.6 - May 9 2021 = Adjustments for international delivery. Supports multi-vendor with Dokan and WCFM Marketplace.
Note: See TracChangeset
for help on using the changeset viewer.