Version Description
- BUG: Fixed $pmpro_core_pages bug added in 1.8.5.5.
- BUG: Removed styling of .input from frontend.css. (Thanks, Russell Jamieson)
Download this release
Release Info
Developer | strangerstudios |
Plugin | Paid Memberships Pro |
Version | 1.8.5.6 |
Comparing to | |
See all releases |
Code changes from version 1.8.5.5 to 1.8.5.6
- css/frontend.css +1 -1
- paid-memberships-pro.php +2 -2
- readme.txt +5 -1
- services/ipnhandler.php +1 -1
css/frontend.css
CHANGED
@@ -67,7 +67,7 @@ form.pmpro_form label {float: left; margin: 3px 10px 0 0; width: 200px; font-wei
|
|
67 |
form.pmpro_form label.pmpro_normal {float: none; margin: 0 0 0 0; width: auto; font-weight: normal; text-align: auto;}
|
68 |
.pmpro_clickable {cursor: pointer;}
|
69 |
form.pmpro_form .likelabel {font-weight: bold; }
|
70 |
-
form.pmpro_form .input, form.pmpro_form textarea,
|
71 |
form.pmpro_form textarea {font-family: Arial, Helvetica, sans-serif; font-size: 12px; }
|
72 |
form.pmpro_form select {margin: 2px 0 0 0 ; font-size: 12px;}
|
73 |
form.pmpro_form .lite {color: #666; }
|
67 |
form.pmpro_form label.pmpro_normal {float: none; margin: 0 0 0 0; width: auto; font-weight: normal; text-align: auto;}
|
68 |
.pmpro_clickable {cursor: pointer;}
|
69 |
form.pmpro_form .likelabel {font-weight: bold; }
|
70 |
+
form.pmpro_form .input, form.pmpro_form textarea, form.pmpro_form select {border: 1px solid #AAA; display: inline-block; margin: 0 3px 0 0; padding: 3px; width: auto; max-width: 60%; }
|
71 |
form.pmpro_form textarea {font-family: Arial, Helvetica, sans-serif; font-size: 12px; }
|
72 |
form.pmpro_form select {margin: 2px 0 0 0 ; font-size: 12px;}
|
73 |
form.pmpro_form .lite {color: #666; }
|
paid-memberships-pro.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Paid Memberships Pro
|
4 |
Plugin URI: http://www.paidmembershipspro.com
|
5 |
Description: Plugin to Handle Memberships
|
6 |
-
Version: 1.8.5.
|
7 |
Author: Stranger Studios
|
8 |
Author URI: http://www.strangerstudios.com
|
9 |
*/
|
@@ -13,7 +13,7 @@ Author URI: http://www.strangerstudios.com
|
|
13 |
*/
|
14 |
|
15 |
//version constant
|
16 |
-
define("PMPRO_VERSION", "1.8.5.
|
17 |
|
18 |
//if the session has been started yet, start it (ignore if running from command line)
|
19 |
if(defined('STDIN') )
|
3 |
Plugin Name: Paid Memberships Pro
|
4 |
Plugin URI: http://www.paidmembershipspro.com
|
5 |
Description: Plugin to Handle Memberships
|
6 |
+
Version: 1.8.5.6
|
7 |
Author: Stranger Studios
|
8 |
Author URI: http://www.strangerstudios.com
|
9 |
*/
|
13 |
*/
|
14 |
|
15 |
//version constant
|
16 |
+
define("PMPRO_VERSION", "1.8.5.6");
|
17 |
|
18 |
//if the session has been started yet, start it (ignore if running from command line)
|
19 |
if(defined('STDIN') )
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: strangerstudios
|
|
3 |
Tags: memberships, membership, authorize.net, ecommerce, paypal, stripe, braintree, restrict access, restrict content, directory site, payflow
|
4 |
Requires at least: 3.5
|
5 |
Tested up to: 4.3
|
6 |
-
Stable tag: 1.8.5.
|
7 |
|
8 |
A revenue-generating machine for membership sites. Unlimited levels with recurring payment, protected content and member management.
|
9 |
|
@@ -115,6 +115,10 @@ Not sure? You can find out by doing a bit a research.
|
|
115 |
[View All Screenshots](http://www.paidmembershipspro.com/features/screenshots/)
|
116 |
|
117 |
== Changelog ==
|
|
|
|
|
|
|
|
|
118 |
= 1.8.5.5 =
|
119 |
* BUG: Added a $pmpro_core_pages global and using that in includes/init.php so we don't try to load preheaders and templates for pages added to that from other addons/etc.
|
120 |
|
3 |
Tags: memberships, membership, authorize.net, ecommerce, paypal, stripe, braintree, restrict access, restrict content, directory site, payflow
|
4 |
Requires at least: 3.5
|
5 |
Tested up to: 4.3
|
6 |
+
Stable tag: 1.8.5.6
|
7 |
|
8 |
A revenue-generating machine for membership sites. Unlimited levels with recurring payment, protected content and member management.
|
9 |
|
115 |
[View All Screenshots](http://www.paidmembershipspro.com/features/screenshots/)
|
116 |
|
117 |
== Changelog ==
|
118 |
+
= 1.8.5.6 =
|
119 |
+
* BUG: Fixed $pmpro_core_pages bug added in 1.8.5.5.
|
120 |
+
* BUG: Removed styling of .input from frontend.css. (Thanks, Russell Jamieson)
|
121 |
+
|
122 |
= 1.8.5.5 =
|
123 |
* BUG: Added a $pmpro_core_pages global and using that in includes/init.php so we don't try to load preheaders and templates for pages added to that from other addons/etc.
|
124 |
|
services/ipnhandler.php
CHANGED
@@ -393,7 +393,7 @@
|
|
393 |
ipnlog("FP!");
|
394 |
|
395 |
$res = wp_remote_retrieve_body($fp);
|
396 |
-
if(strcmp($res, "VERIFIED") == 0
|
397 |
{
|
398 |
//all good so far
|
399 |
ipnlog("VERIFIED");
|
393 |
ipnlog("FP!");
|
394 |
|
395 |
$res = wp_remote_retrieve_body($fp);
|
396 |
+
if(strcmp($res, "VERIFIED") == 0)
|
397 |
{
|
398 |
//all good so far
|
399 |
ipnlog("VERIFIED");
|