Plugin Directory

Changeset 1884145


Ignore:
Timestamp:
05/30/2018 02:06:34 PM (8 years ago)
Author:
avecdo
Message:

Fixed spelling error.

Location:
avecdo-for-woocommerce/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • avecdo-for-woocommerce/trunk/avecdo.php

    r1876959 r1884145  
    44 * Plugin URI: http://avecdo.com/
    55 * Description: avecdo connector plugin for WooCommerce
    6  * Version: 1.3.8
     6 * Version: 1.3.9
    77 * Author: Modified Solutions ApS
    88 * Author URI: https://www.modified.dk/
     
    1010 * Developer URI: https://www.modified.dk/
    1111 * Requires at least: 3.5
    12  * Tested up to: 4.9.5
     12 * Tested up to: 4.9.6
    1313 *
    1414 * Text Domain: avecdo-for-woocommerce
     
    2929 * @var string Version string
    3030 */
    31 define('AVECDO_WOOCOMMERCE_PLUGIN_VERSION', '1.3.8');
     31define('AVECDO_WOOCOMMERCE_PLUGIN_VERSION', '1.3.9');
    3232
    3333/**
     
    9797    function avecdoShowNotice()
    9898    {
    99         $updateSatatus = get_transient('__avecdo_update_check');
    100         if (!isset($updateSatatus['latest']) || version_compare($updateSatatus['latest'], AVECDO_WOOCOMMERCE_PLUGIN_VERSION, '<=')) {
    101             unset($updateSatatus);
    102         }
    103 
    104         if (current_user_can('update_plugins') && $updateSatatus && $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']) {
    105105           
    106106            $slug = "avecdo-for-woocommerce";
  • avecdo-for-woocommerce/trunk/readme.txt

    r1876959 r1884145  
    44Requires at least: 3.5
    55Tested up to: 4.9.6
    6 Stable tag: 1.3.8
     6Stable tag: 1.3.9
    77License: Mozilla Public License Version 2.0
    88License URI: https://www.mozilla.org/en-US/MPL/2.0/
     
    4545
    4646== Changelog ==
     47
     48= 1.3.9 =
     49* Fixed spelling error.
    4750
    4851= 1.3.8 =
Note: See TracChangeset for help on using the changeset viewer.