Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
BUG: Removed the debug call to d($...) that was left in preheaders/ch…
Browse files Browse the repository at this point in the history
…eckout.php and would show up when checkout forms were submitted with empty fields. (Thanks, Nicolas)

git-svn-id: https://plugins.svn.wordpress.org/paid-memberships-pro/trunk@986458 b8457f37-d9ea-0310-8a92-e5e31aec5664
  • Loading branch information
strangerstudios committed Sep 10, 2014
1 parent 20722af commit 9751de7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions paid-memberships-pro.php
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Paid Memberships Pro
Plugin URI: http://www.paidmembershipspro.com
Description: Plugin to Handle Memberships
Version: 1.7.14.1
Version: 1.7.14.2
Author: Stranger Studios
Author URI: http://www.strangerstudios.com
*/
Expand All @@ -13,7 +13,7 @@
*/

//version constant
define("PMPRO_VERSION", "1.7.14.1");
define("PMPRO_VERSION", "1.7.14.2");

//if the session has been started yet, start it (ignore if running from command line)
if(defined('STDIN') )
Expand Down
3 changes: 1 addition & 2 deletions preheaders/checkout.php
Expand Up @@ -461,8 +461,7 @@ function pmpro_braintree_dont_require_CVV($fields)
}
}

if (!empty($pmpro_error_fields)) {
d($pmpro_error_fields);
if (!empty($pmpro_error_fields)) {
pmpro_setMessage(__("Please complete all required fields.", "pmpro"), "pmpro_error");
}
if (!empty($password) && $password != $password2) {
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Expand Up @@ -3,7 +3,7 @@ Contributors: strangerstudios
Tags: memberships, membership, authorize.net, ecommerce, paypal, stripe, braintree, restrict access, restrict content, directory site, payflow
Requires at least: 3.5
Tested up to: 4.0
Stable tag: 1.7.14.1
Stable tag: 1.7.14.2

The easiest way to GET PAID with your WordPress site. Flexible content control by Membership Level, Reports, Affiliates and Discounts

Expand Down Expand Up @@ -102,6 +102,9 @@ Not sure? You can find out by doing a bit a research.
4. Offer Membership Discounts with specific price rules (restricted by level, unique pricing for each level, # of uses, expiration date.)

== Changelog ==
= 1.7.14.2 =
* BUG: Removed the debug call to d($...) that was left in preheaders/checkout.php and would show up when checkout forms were submitted with empty fields. (Thanks, Nicolas)

= 1.7.14.1 =
* BUG: Fixed warnings in PayPal Express class that could break redirects at checkout. (Thanks, Adam Warner)
* BUG: Fixed issue where new users who checked out with Braintree weren't having their customerid's saved, which led to subscription syncronization issues if they checked out again or updated their billing.
Expand Down

0 comments on commit 9751de7

Please sign in to comment.