Plugin Directory

Changeset 1917780


Ignore:
Timestamp:
07/31/2018 06:00:28 PM (8 years ago)
Author:
bseddon
Message:

When the plugin was used on the 31st of the month only those months with 31 days were displayed in the period selection month dropdown.

Location:
vat-moss/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • vat-moss/trunk/includes/class-html-elements.php

    r1105174 r1917780  
    103103
    104104        while ( $month <= 12 ) {
    105             $options[date('m', mktime(0, 0, 0, $month))] = date("F", mktime(0, 0, 0, $month));
     105            $options[date('m', mktime(0, 0, 0, $month, 1))] = date("F", mktime(0, 0, 0, $month, 1));
    106106            $month++;
    107107        }
  • vat-moss/trunk/readme.txt

    r1904660 r1917780  
    55Tags: VAT, HMRC, MOSS, M1SS, tax, EU, UKdigital vat, Easy Digital Downloads, edd, edd tax, edd vat, eu tax, eu vat, eu vat compliance, european tax, european vat, iva, iva ue, Mehrwertsteuer, mwst, taux de TVA, tax, TVA, VAT, vat compliance, vat moss, vat rates, vatmoss, WooCommerce
    66Requires at least: 3.9.2
    7 Tested up to: 4.9
    8 Stable Tag: 1.0.27
     7Tested up to: 4.9.7
     8Stable Tag: 1.0.28
    99License: GNU Version 2 or Any Later Version
    1010
     
    189189
    190190Added support for EDD fees which are used by the EDD 'pro' discount plugin to implement discounts.
     191
     192= 1.0.28
     193
     194When used on the 31st of the month only months with 31 days are included in the period selection month dropdowns
    191195
    192196== Upgrade Notice ==
  • vat-moss/trunk/vat-moss.php

    r1904660 r1917780  
    55Plugin URI: http://www.wproute.com/downloads/vat-moss/
    66Description: Management and submission of VAT sales to EU consumers.
    7 Version: 1.0.27
    8 Tested up to: 4.9.6
     7Version: 1.0.28
     8Tested up to: 4.9.7
    99Author: Lyquidity Solutions
    1010Author URI: http://www.wproute.com/
     
    431431
    432432        if ( ! defined( 'VAT_MOSS_VERSION' ) )
    433             define( 'VAT_MOSS_VERSION',                         '1.0.27' );
     433            define( 'VAT_MOSS_VERSION',                         '1.0.28' );
    434434
    435435        if ( ! defined( 'VAT_MOSS_WORDPRESS_COMPATIBILITY' ) )
    436             define( 'VAT_MOSS_WORDPRESS_COMPATIBILITY',         '4.9.6' );
     436            define( 'VAT_MOSS_WORDPRESS_COMPATIBILITY',         '4.9.7' );
    437437
    438438        if ( ! defined( 'VAT_MOSS_STORE_API_URL' ) )
Note: See TracChangeset for help on using the changeset viewer.