Skip to content

Commit

Permalink
fix links to enable affiliate links and escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
jesseeproductions committed Mar 21, 2018
1 parent b9b35cb commit 20236a2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion coupon_creator.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*
Plugin Name: Coupon Creator
Description: This plugin creates a custom post type for coupons with a shortcode to display it on website and a single view template for printing.
Version: 2.5.4
Version: 2.5.4.1
Author: Brian Jessee
Author URI: http://couponcreatorplugin.com
Text Domain: coupon-creator
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Tags: custom post type, coupon, shortcode
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=W6FGHL2BUNY2W&lc=US&item_name=Coupon%20Creator&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
Requires at least: 4.2
Tested up to: 4.9
Stable tag: 2.5.4
Stable tag: 2.5.4.1
License: GPLv2
License URI: http://www.opensource.org/licenses/GPL-2.0

Expand Down Expand Up @@ -140,6 +140,9 @@ You can add custom css in the options and it will modify both the shortcode coup
6. Coupon Options

== Changelog ==
= 2.5.4.1 March, 21st 2018 =
* Fix - Fix the pop up video display by making it always use https, thanks John for reporting
* Tweak - Loading of external links to allow those with html entities, such as affialite links to be properly escaped without breaking, thanks Rebecca for bring it up!

= 2.5.4 March, 5th 2018 =
* Tweak - Enable the deal and title fields to accept <b><br><em><i><span><strong><sub><sup> tags
Expand Down
4 changes: 2 additions & 2 deletions src/Cctor/Main.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ class Cctor__Coupon__Main {
const MIN_PHP_VERSION = '5.2';
const MIN_WP_VERSION = '4.0';
const VERSION_KEY = 'cctor_coupon_version';
const VERSION_NUM = '2.5.4';
const MIN_PNGX_VERSION = '2.5.3';
const VERSION_NUM = '2.5.4.1';
const MIN_PNGX_VERSION = '2.5.4.1';
const WP_PLUGIN_URL = 'https://wordpress.org/plugins/coupon-creator/';
const COUPON_CREATOR_STORE_URL = 'https://couponcreatorplugin.com/edd-sl-api/';
const OPTIONS_ID = 'coupon_creator_options';
Expand Down

0 comments on commit 20236a2

Please sign in to comment.