Version Description
- Updated minimum requirements to WordPress 3.0.
Download this release
Release Info
| Developer | PriMoThemes |
| Plugin | |
| Version | 3.1.2 |
| Comparing to | |
| See all releases | |
Code changes from version 3.1.1 to 3.1.2
- readme.txt +7 -4
- s2member.php +6 -6
readme.txt
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
=== s2Member ( Membership w/ PayPal® Integration ) also works w/ BuddyPress ===
|
| 2 |
|
| 3 |
-
Version: 3.1.
|
| 4 |
-
Stable tag: 3.1.
|
| 5 |
Framework: WS-P-3.0
|
| 6 |
|
| 7 |
SSL Compatible: yes
|
|
@@ -12,8 +12,8 @@ WP Multisite Compatible: soon
|
|
| 12 |
Multisite Blog Farm Compatible: no
|
| 13 |
|
| 14 |
Tested up to: 3.0
|
| 15 |
-
Requires at least:
|
| 16 |
-
Requires: WordPress®
|
| 17 |
|
| 18 |
Copyright: © 2009 WebSharks, Inc.
|
| 19 |
License: GNU General Public License
|
|
@@ -156,6 +156,9 @@ Not yet. This is coming soon though. It will be included in a future release of
|
|
| 156 |
|
| 157 |
== Changelog ==
|
| 158 |
|
|
|
|
|
|
|
|
|
|
| 159 |
= 3.1.1 =
|
| 160 |
* New feature. Now you can use `s2member_force_ssl -> yes` as a Custom Field with any Post/Page. This feature comes in handy if you need to force SSL on pages hosting PayPal® Pro Forms, implemented by the s2Member Pro Module. You can set `s2member_force_ssl -> yes` to force *https://*. If your server runs SSL over a special port number, or your server requires the port number to actually be in the URL ( i.e. HOST:port ), you can set `s2member_force_ssl -> 443`; or to whatever port you need. In addition to forcing *https://*, s2Member is also capable of forcing SSL compatibility in your theme, and in other quirky plugins. If your theme is NOT 100% compatible with SSL, s2Member can sometimes correct flaws automatically, but not always. For maximum compatibility with SSL, we recommend a premium WordPress® theme from PriMoThemes.com, or from another trusted source that states "SSL Compatible".
|
| 161 |
* Bug fix. References to the Constant `WP_CONTENT_URL` have been removed, in favor of `content_url()`, which is SSL-friendly.
|
| 1 |
=== s2Member ( Membership w/ PayPal® Integration ) also works w/ BuddyPress ===
|
| 2 |
|
| 3 |
+
Version: 3.1.2
|
| 4 |
+
Stable tag: 3.1.2
|
| 5 |
Framework: WS-P-3.0
|
| 6 |
|
| 7 |
SSL Compatible: yes
|
| 12 |
Multisite Blog Farm Compatible: no
|
| 13 |
|
| 14 |
Tested up to: 3.0
|
| 15 |
+
Requires at least: 3.0
|
| 16 |
+
Requires: WordPress® 3.0+, PHP 5.2+
|
| 17 |
|
| 18 |
Copyright: © 2009 WebSharks, Inc.
|
| 19 |
License: GNU General Public License
|
| 156 |
|
| 157 |
== Changelog ==
|
| 158 |
|
| 159 |
+
= 3.1.2 =
|
| 160 |
+
* Updated minimum requirements to WordPress® 3.0.
|
| 161 |
+
|
| 162 |
= 3.1.1 =
|
| 163 |
* New feature. Now you can use `s2member_force_ssl -> yes` as a Custom Field with any Post/Page. This feature comes in handy if you need to force SSL on pages hosting PayPal® Pro Forms, implemented by the s2Member Pro Module. You can set `s2member_force_ssl -> yes` to force *https://*. If your server runs SSL over a special port number, or your server requires the port number to actually be in the URL ( i.e. HOST:port ), you can set `s2member_force_ssl -> 443`; or to whatever port you need. In addition to forcing *https://*, s2Member is also capable of forcing SSL compatibility in your theme, and in other quirky plugins. If your theme is NOT 100% compatible with SSL, s2Member can sometimes correct flaws automatically, but not always. For maximum compatibility with SSL, we recommend a premium WordPress® theme from PriMoThemes.com, or from another trusted source that states "SSL Compatible".
|
| 164 |
* Bug fix. References to the Constant `WP_CONTENT_URL` have been removed, in favor of `content_url()`, which is SSL-friendly.
|
s2member.php
CHANGED
|
@@ -9,8 +9,8 @@ along with this software. In the main directory, see: /licensing/
|
|
| 9 |
If not, see: <http://www.gnu.org/licenses/>.
|
| 10 |
*/
|
| 11 |
/*
|
| 12 |
-
Version: 3.1.
|
| 13 |
-
Stable tag: 3.1.
|
| 14 |
Framework: WS-P-3.0
|
| 15 |
|
| 16 |
SSL Compatible: yes
|
|
@@ -21,8 +21,8 @@ WP Multisite Compatible: soon
|
|
| 21 |
Multisite Blog Farm Compatible: no
|
| 22 |
|
| 23 |
Tested up to: 3.0
|
| 24 |
-
Requires at least:
|
| 25 |
-
Requires: WordPress®
|
| 26 |
|
| 27 |
Copyright: © 2009 WebSharks, Inc.
|
| 28 |
License: GNU General Public License
|
|
@@ -47,9 +47,9 @@ if (realpath (__FILE__) === realpath ($_SERVER["SCRIPT_FILENAME"]))
|
|
| 47 |
/*
|
| 48 |
Define versions.
|
| 49 |
*/
|
| 50 |
-
define ("WS_PLUGIN__S2MEMBER_VERSION", "3.1.
|
| 51 |
define ("WS_PLUGIN__S2MEMBER_MIN_PHP_VERSION", "5.2");
|
| 52 |
-
define ("WS_PLUGIN__S2MEMBER_MIN_WP_VERSION", "
|
| 53 |
define ("WS_PLUGIN__S2MEMBER_MIN_PRO_VERSION", "1.0.5");
|
| 54 |
/*
|
| 55 |
Compatibility checks.
|
| 9 |
If not, see: <http://www.gnu.org/licenses/>.
|
| 10 |
*/
|
| 11 |
/*
|
| 12 |
+
Version: 3.1.2
|
| 13 |
+
Stable tag: 3.1.2
|
| 14 |
Framework: WS-P-3.0
|
| 15 |
|
| 16 |
SSL Compatible: yes
|
| 21 |
Multisite Blog Farm Compatible: no
|
| 22 |
|
| 23 |
Tested up to: 3.0
|
| 24 |
+
Requires at least: 3.0
|
| 25 |
+
Requires: WordPress® 3.0+, PHP 5.2+
|
| 26 |
|
| 27 |
Copyright: © 2009 WebSharks, Inc.
|
| 28 |
License: GNU General Public License
|
| 47 |
/*
|
| 48 |
Define versions.
|
| 49 |
*/
|
| 50 |
+
define ("WS_PLUGIN__S2MEMBER_VERSION", "3.1.2");
|
| 51 |
define ("WS_PLUGIN__S2MEMBER_MIN_PHP_VERSION", "5.2");
|
| 52 |
+
define ("WS_PLUGIN__S2MEMBER_MIN_WP_VERSION", "3.0");
|
| 53 |
define ("WS_PLUGIN__S2MEMBER_MIN_PRO_VERSION", "1.0.5");
|
| 54 |
/*
|
| 55 |
Compatibility checks.
|
