Changeset 1884145
- Timestamp:
- 05/30/2018 02:06:34 PM (8 years ago)
- Location:
- avecdo-for-woocommerce/trunk
- Files:
-
- 2 edited
-
avecdo.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
avecdo-for-woocommerce/trunk/avecdo.php
r1876959 r1884145 4 4 * Plugin URI: http://avecdo.com/ 5 5 * Description: avecdo connector plugin for WooCommerce 6 * Version: 1.3. 86 * Version: 1.3.9 7 7 * Author: Modified Solutions ApS 8 8 * Author URI: https://www.modified.dk/ … … 10 10 * Developer URI: https://www.modified.dk/ 11 11 * Requires at least: 3.5 12 * Tested up to: 4.9. 512 * Tested up to: 4.9.6 13 13 * 14 14 * Text Domain: avecdo-for-woocommerce … … 29 29 * @var string Version string 30 30 */ 31 define('AVECDO_WOOCOMMERCE_PLUGIN_VERSION', '1.3. 8');31 define('AVECDO_WOOCOMMERCE_PLUGIN_VERSION', '1.3.9'); 32 32 33 33 /** … … 97 97 function avecdoShowNotice() 98 98 { 99 $updateS atatus = get_transient('__avecdo_update_check');100 if (!isset($updateS atatus['latest']) || version_compare($updateSatatus['latest'], AVECDO_WOOCOMMERCE_PLUGIN_VERSION, '<=')) {101 unset($updateSatatus);102 } 103 104 if (current_user_can('update_plugins') && $updateS atatus && $updateSatatus['update_available']) {99 $updateStatus = get_transient('__avecdo_update_check'); 100 if (!isset($updateStatus['latest']) || version_compare($updateStatus['latest'], AVECDO_WOOCOMMERCE_PLUGIN_VERSION, '<=')) { 101 $updateStatus = false; 102 } 103 104 if (current_user_can('update_plugins') && $updateStatus && $updateStatus['update_available']) { 105 105 106 106 $slug = "avecdo-for-woocommerce"; -
avecdo-for-woocommerce/trunk/readme.txt
r1876959 r1884145 4 4 Requires at least: 3.5 5 5 Tested up to: 4.9.6 6 Stable tag: 1.3. 86 Stable tag: 1.3.9 7 7 License: Mozilla Public License Version 2.0 8 8 License URI: https://www.mozilla.org/en-US/MPL/2.0/ … … 45 45 46 46 == Changelog == 47 48 = 1.3.9 = 49 * Fixed spelling error. 47 50 48 51 = 1.3.8 =
Note: See TracChangeset
for help on using the changeset viewer.