Changeset 2547885
- Timestamp:
- 06/15/2021 05:33:18 AM (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
r2544695 r2547885 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. 96 Version: 1.1.10 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. 9');15 define('DELYVAX_PLUGIN_VERSION', '1.1.10'); 16 16 17 17 require_once plugin_dir_path(__FILE__) . 'functions.php'; -
delyvax/trunk/includes/delyvax-webhook.php
r2544695 r2547885 19 19 for ($i=0; $i < sizeof($webhooks); $i++) { 20 20 $wh = $webhooks[$i]; 21 if (array_key_exists($wh['event'], $available) ) {21 if (array_key_exists($wh['event'], $available) && $wh['url'] === $valid_url) { 22 22 DelyvaX_Shipping_API::deleteWebhook($wh['id']); 23 23 } else if ($wh['url'] === $old_url) { -
delyvax/trunk/readme.txt
r2544695 r2547885 4 4 Requires at least: 5.4 5 5 Tested up to: 5.7 6 Stable tag: 1.1. 96 Stable tag: 1.1.10 7 7 Requires PHP: 7.2 8 8 License: GPLv3 … … 34 34 == Changelog == 35 35 36 = 1.1.10 = 37 *Release Date - 15 June 2021* 38 39 * Fix bug where plugin deletes unrelated webhook 40 36 41 = 1.1.9 = 37 42 *Release Date - 9 June 2021*
Note: See TracChangeset
for help on using the changeset viewer.