Plugin Directory

Changeset 3084584


Ignore:
Timestamp:
05/10/2024 02:51:12 PM (22 months ago)
Author:
DanielRiera
Message:

Update to version 1.4.3 from GitHub

Location:
estimated-delivery-for-woocommerce
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • estimated-delivery-for-woocommerce/tags/1.4.3/README.md

    r3082850 r3084584  
    66Tested up to: 6.5.3
    77Requires PHP: 5.0
    8 Stable tag: 1.4.2
     8Stable tag: 1.4.3
    99Licence: GPLv2 or later
    1010Show estimated / guaranteed delivery, simple and easy
     
    4848 
    4949== Changelog ==
     50
     51= 1.4.3 =
     52* Fix error with dates, the date show is only today.
    5053
    5154= 1.4.2 =
  • estimated-delivery-for-woocommerce/tags/1.4.3/estimated-delivery-woocommerce.php

    r3082850 r3084584  
    66 * Author: Daniel Riera
    77 * Author URI: https://danielriera.net
    8  * Version: 1.4.2
     8 * Version: 1.4.3
    99 * Text Domain: estimated-delivery-for-woocommerce
    1010 * Domain Path: /languages
     
    2020define('EDW_POSITION_SHOW', get_option('_edw_position', 'woocommerce_after_add_to_cart_button'));
    2121define('EDW_USE_JS', get_option('_edw_cache', '0'));
    22 define('EDW_Version', '1.4.2');
     22define('EDW_Version', '1.4.3');
    2323
    2424require_once EDW_PATH . 'class.api.php';
     
    305305            }
    306306
    307             $dateCheck = wp_date('Y-m-d', strtotime($dateCheck . " + 1 days"));
     307            $dateCheck = date('Y-m-d', strtotime($dateCheck . "+1 days"));
    308308            $is_holiday = $this->check_holidays_date($dateCheck);
    309309            $filterDisabled = date('D', strtotime($dateCheck));
  • estimated-delivery-for-woocommerce/trunk/README.md

    r3082850 r3084584  
    66Tested up to: 6.5.3
    77Requires PHP: 5.0
    8 Stable tag: 1.4.2
     8Stable tag: 1.4.3
    99Licence: GPLv2 or later
    1010Show estimated / guaranteed delivery, simple and easy
     
    4848 
    4949== Changelog ==
     50
     51= 1.4.3 =
     52* Fix error with dates, the date show is only today.
    5053
    5154= 1.4.2 =
  • estimated-delivery-for-woocommerce/trunk/estimated-delivery-woocommerce.php

    r3082850 r3084584  
    66 * Author: Daniel Riera
    77 * Author URI: https://danielriera.net
    8  * Version: 1.4.2
     8 * Version: 1.4.3
    99 * Text Domain: estimated-delivery-for-woocommerce
    1010 * Domain Path: /languages
     
    2020define('EDW_POSITION_SHOW', get_option('_edw_position', 'woocommerce_after_add_to_cart_button'));
    2121define('EDW_USE_JS', get_option('_edw_cache', '0'));
    22 define('EDW_Version', '1.4.2');
     22define('EDW_Version', '1.4.3');
    2323
    2424require_once EDW_PATH . 'class.api.php';
     
    305305            }
    306306
    307             $dateCheck = wp_date('Y-m-d', strtotime($dateCheck . " + 1 days"));
     307            $dateCheck = date('Y-m-d', strtotime($dateCheck . "+1 days"));
    308308            $is_holiday = $this->check_holidays_date($dateCheck);
    309309            $filterDisabled = date('D', strtotime($dateCheck));
Note: See TracChangeset for help on using the changeset viewer.