Version Description
- tested for WordPress 3.9
- fix bug preventing the notice from hiding on legacy page
Download this release
Release Info
Developer | picklewagon |
Plugin | New User Approve |
Version | 1.5.8 |
Comparing to | |
See all releases |
Code changes from version 1.5.7 to 1.5.8
- includes/admin-approve.php +1 -1
- new-user-approve.php +1 -1
- readme.txt +6 -2
includes/admin-approve.php
CHANGED
@@ -236,7 +236,7 @@ class pw_new_user_approve_admin_approve {
|
|
236 |
* @uses admin_init
|
237 |
*/
|
238 |
public function notice_ignore() {
|
239 |
-
if ( isset( $_GET['new-user-approve-ignore-notice'] ) && '1' == $_GET['new-user-approve-ignore-notice
|
240 |
$user_id = get_current_user_id();
|
241 |
add_user_meta( $user_id, 'pw_new_user_approve_ignore_notice', '1', true );
|
242 |
}
|
236 |
* @uses admin_init
|
237 |
*/
|
238 |
public function notice_ignore() {
|
239 |
+
if ( isset( $_GET['new-user-approve-ignore-notice'] ) && '1' == $_GET['new-user-approve-ignore-notice'] ) {
|
240 |
$user_id = get_current_user_id();
|
241 |
add_user_meta( $user_id, 'pw_new_user_approve_ignore_notice', '1', true );
|
242 |
}
|
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://picklewagon.com/
|
9 |
*/
|
10 |
|
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
|
8 |
Author URI: http://picklewagon.com/
|
9 |
*/
|
10 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: picklewagon
|
|
3 |
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.
|
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,10 @@ this feature.
|
|
68 |
|
69 |
== Changelog ==
|
70 |
|
|
|
|
|
|
|
|
|
71 |
= 1.5.7 =
|
72 |
* fix bug that was preventing bulk approval/denials
|
73 |
|
3 |
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.9
|
7 |
+
Stable tag: 1.5.8
|
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.8 =
|
72 |
+
* tested for WordPress 3.9
|
73 |
+
* fix bug preventing the notice from hiding on legacy page
|
74 |
+
|
75 |
= 1.5.7 =
|
76 |
* fix bug that was preventing bulk approval/denials
|
77 |
|