Version Description
- fix bug when trying to install on a site with WP 3.5.1
Download this release
Release Info
Developer | picklewagon |
Plugin | New User Approve |
Version | 1.5.1 |
Comparing to | |
See all releases |
Code changes from version 1.5 to 1.5.1
- new-user-approve.php +2 -2
- readme.txt +4 -1
new-user-approve.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin URI: http://www.picklewagon.com/wordpress/new-user-approve/
|
5 |
Description: Allow administrators to approve users once they register. Only approved users will be allowed to access the blog. For support, please go to the <a href="http://wordpress.org/support/plugin/new-user-approve">support forums</a> on wordpress.org.
|
6 |
Author: Josh Harrison
|
7 |
-
Version: 1.5
|
8 |
Author URI: http://www.picklewagon.com/
|
9 |
*/
|
10 |
|
@@ -77,7 +77,7 @@ class pw_new_user_approve {
|
|
77 |
|
78 |
$min_wp_version = '3.5.1';
|
79 |
$exit_msg = sprintf( __( 'New User Approve requires WordPress %s or newer.', 'new-user-approve' ), $min_wp_version );
|
80 |
-
if ( version_compare( $wp_version, $min_wp_version, '
|
81 |
exit( $exit_msg );
|
82 |
}
|
83 |
|
4 |
Plugin URI: http://www.picklewagon.com/wordpress/new-user-approve/
|
5 |
Description: Allow administrators to approve users once they register. Only approved users will be allowed to access the blog. For support, please go to the <a href="http://wordpress.org/support/plugin/new-user-approve">support forums</a> on wordpress.org.
|
6 |
Author: Josh Harrison
|
7 |
+
Version: 1.5.1
|
8 |
Author URI: http://www.picklewagon.com/
|
9 |
*/
|
10 |
|
77 |
|
78 |
$min_wp_version = '3.5.1';
|
79 |
$exit_msg = sprintf( __( 'New User Approve requires WordPress %s or newer.', 'new-user-approve' ), $min_wp_version );
|
80 |
+
if ( version_compare( $wp_version, $min_wp_version, '<' ) ) {
|
81 |
exit( $exit_msg );
|
82 |
}
|
83 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://picklewagon.com/wordpress/new-user-approve/donate
|
|
4 |
Tags: users, registration, sign up, user management
|
5 |
Requires at least: 3.5.1
|
6 |
Tested up to: 3.6
|
7 |
-
Stable tag: 1.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -68,6 +68,9 @@ this feature.
|
|
68 |
|
69 |
== Changelog ==
|
70 |
|
|
|
|
|
|
|
71 |
= 1.5 =
|
72 |
* add more logic to prevent unwanted password resets
|
73 |
* add more translations
|
4 |
Tags: users, registration, sign up, user management
|
5 |
Requires at least: 3.5.1
|
6 |
Tested up to: 3.6
|
7 |
+
Stable tag: 1.5.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
68 |
|
69 |
== Changelog ==
|
70 |
|
71 |
+
= 1.5.1 =
|
72 |
+
* fix bug when trying to install on a site with WP 3.5.1
|
73 |
+
|
74 |
= 1.5 =
|
75 |
* add more logic to prevent unwanted password resets
|
76 |
* add more translations
|