Skip to content

Commit

Permalink
* SECURITY: Removed debug code from the PayPal IPN Handler script tha…
Browse files Browse the repository at this point in the history
…t was causing invalid IPN requests to process as if they were valid. (Thanks, Francois Harvey)
  • Loading branch information
ideadude committed Oct 9, 2015
1 parent 0423094 commit 5c19c9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ Not sure? You can find out by doing a bit a research.

== Changelog ==
= 1.8.6.1 =
* SECURITY: Removed debug code from the PayPal IPN Handler script that was causing invalid IPN requests to process as if they were valid. (Thanks, Francois Harvey)
* BUG: Stripe supports daily recurring subscriptions. Fixed issue where PMPro was still throwing a warning in some cases.
* BUG: Removed warnings in the membership stats report.
* CODE: Changed a couple instances of "since v2.0" to "since v1.8".
Expand Down
2 changes: 1 addition & 1 deletion services/ipnhandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ function pmpro_ipnValidate()
ipnlog("FP!");

$res = wp_remote_retrieve_body($fp);
if(strcmp($res, "VERIFIED") == 0 || true)
if(strcmp($res, "VERIFIED") == 0)
{
//all good so far
ipnlog("VERIFIED");
Expand Down

0 comments on commit 5c19c9b

Please sign in to comment.