Plugin Directory

Changeset 1960578


Ignore:
Timestamp:
10/22/2018 11:19:39 AM (7 years ago)
Author:
ingpsp
Message:

Remove DOB check

Location:
ing-psp/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • ing-psp/trunk/CHANGELOG.md

    r1958225 r1960578  
    11# Changelog WooCommerce
     2
     3** 1.3.6 **
     4* Remove DOB check
    25
    36** 1.3.5 **
  • ing-psp/trunk/README.md

    r1958225 r1960578  
    1515
    1616## Version number
    17 Version 1.3.5
     17Version 1.3.6
    1818
    1919## Pre-requisites to install the plug-ins
  • ing-psp/trunk/ing-php/vendor/beberlei/assert/lib/Assert/Assertion.php

    r1958225 r1960578  
    21912191    public static function date($value, $format, $message = null, $propertyPath = null)
    21922192    {
    2193         if (strlen($value) != 10) {
    2194             throw static::createException($value, 'Gelieve geboortedatum in te vullen', static::INVALID_DATE, $propertyPath, array('format' => $format));
    2195         }
     2193        // if (strlen($value) != 10) {
     2194     //        throw static::createException($value, 'Gelieve geboortedatum in te vullen', static::INVALID_DATE, $propertyPath, array('format' => $format));
     2195        // }
    21962196        static::string($value, $message, $propertyPath);
    21972197        static::string($format, $message, $propertyPath);
  • ing-psp/trunk/ingpsp.php

    r1958225 r1960578  
    55 * Plugin URI: https://www.ing.nl/
    66 * Description: ING WooCommerce plugin for ING Kassa Compleet and ING ePay markets.
    7  * Version: 1.3.5
     7 * Version: 1.3.6
    88 * Author: Ginger Payments
    99 * Author URI: https://www.gingerpayments.com/
     
    2020 * Define ING PSP plugin version
    2121 */
    22 define('INGPSP_PLUGIN_VERSION', 'WooCommerce v1.3.5');
     22define('INGPSP_PLUGIN_VERSION', 'WooCommerce v1.3.6');
    2323
    2424add_action('plugins_loaded', 'woocommerce_ingpsp_init', 0);
  • ing-psp/trunk/readme.txt

    r1958225 r1960578  
    55Requires at least: 4.0
    66Tested up to: 4.9.6
    7 Stable tag: 1.3.5
     7Stable tag: 1.3.6
    88License: The MIT License (MIT)
    99License URI: https://opensource.org/licenses/MIT
     
    104104== Changelog ==
    105105
     106= 1.3.6 =
     107* Remove DOB check
     108
    106109= 1.3.5 =
    107110* Use dropdowns for DOB
Note: See TracChangeset for help on using the changeset viewer.