Plugin Directory

Changeset 2205304


Ignore:
Timestamp:
12/03/2019 01:18:09 PM (6 years ago)
Author:
ingpsp
Message:

Send in description as is with quotes

Location:
ing-psp/trunk
Files:
5 edited

Legend:

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

    r2197226 r2205304  
    11# Changelog WooCommerce
     2
     3** 1.3.16 **
     4* Fix for users with a ' in the store name
    25
    36** 1.3.15 **
  • ing-psp/trunk/README.md

    r2197226 r2205304  
    1515
    1616## Version number
    17 Version 1.3.15
     17Version 1.3.16
    1818
    1919## Pre-requisites to install the plug-ins
  • ing-psp/trunk/classes/class-wc-ingpsp-helper.php

    r2170043 r2205304  
    384384    public static function getOrderDescription($orderId)
    385385    {
    386         return sprintf(__('Your order %s at %s', self::DOMAIN), $orderId, get_bloginfo('name'));
     386        return sprintf(__('Your order %s at %s', self::DOMAIN), $orderId, html_entity_decode(get_bloginfo('name'), ENT_QUOTES | ENT_HTML401));
    387387    }
    388388}
  • ing-psp/trunk/ingpsp.php

    r2197226 r2205304  
    55 * Plugin URI: https://www.ing.nl/
    66 * Description: ING WooCommerce plugin for ING Kassa Compleet and ING ePay markets.
    7  * Version: 1.3.15
     7 * Version: 1.3.16
    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.15');
     22define('INGPSP_PLUGIN_VERSION', 'WooCommerce v1.3.16');
    2323
    2424add_action('plugins_loaded', 'woocommerce_ingpsp_init', 0);
  • ing-psp/trunk/readme.txt

    r2197226 r2205304  
    55Requires at least: 4.0
    66Tested up to: 5.1.1
    7 Stable tag: 1.3.15
     7Stable tag: 1.3.16
    88License: The MIT License (MIT)
    99License URI: https://opensource.org/licenses/MIT
Note: See TracChangeset for help on using the changeset viewer.