New User Approve - Version 1.3.4

Version Description

  • remove unused screen_layout_columns filter
  • tested with WordPress 3.4
Download this release

Release Info

Developer picklewagon
Plugin Icon 128x128 New User Approve
Version 1.3.4
Comparing to
See all releases

Code changes from version 1.3.3 to 1.3.4

Files changed (2) hide show
  1. new-user-approve.php +2 -3
  2. readme.txt +6 -2
new-user-approve.php CHANGED
@@ -2,9 +2,9 @@
2
  /*
3
  Plugin Name: New User Approve
4
  Plugin URI: http://www.picklewagon.com/wordpress/new-user-approve/
5
- Description: This plugin allows administrators to approve users once they register. Only approved users will be allowed to access the blog.
6
  Author: Josh Harrison
7
- Version: 1.3.3
8
  Author URI: http://www.picklewagon.com/
9
  */
10
 
@@ -64,7 +64,6 @@ class pw_new_user_approve {
64
  // Filters
65
  add_filter('registration_errors', array( $this, 'show_user_message'), 10, 1);
66
  add_filter('login_message', array( $this, 'welcome_user'));
67
- add_filter('screen_layout_columns', array( $this, 'screen_layout_columns'), 10, 2);
68
  add_filter( 'wp_authenticate_user', array( $this, 'authenticate_user' ), 10, 2);
69
  }
70
 
2
  /*
3
  Plugin Name: New User Approve
4
  Plugin URI: http://www.picklewagon.com/wordpress/new-user-approve/
5
+ Description: This plugin allows 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.3.4
8
  Author URI: http://www.picklewagon.com/
9
  */
10
 
64
  // Filters
65
  add_filter('registration_errors', array( $this, 'show_user_message'), 10, 1);
66
  add_filter('login_message', array( $this, 'welcome_user'));
 
67
  add_filter( 'wp_authenticate_user', array( $this, 'authenticate_user' ), 10, 2);
68
  }
69
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: picklewagon
3
  Donate link: http://picklewagon.com/wordpress/new-user-approve/donate
4
  Tags: users, registration
5
  Requires at least: 3.2.1
6
- Tested up to: 3.3.2
7
- Stable tag: 1.3.3
8
 
9
  New User Approve is a Wordpress plugin that allows a blog administrator to
10
  approve a user before they are able to access and login to the blog.
@@ -52,6 +52,10 @@ your liking.
52
 
53
  == Changelog ==
54
 
 
 
 
 
55
  = 1.3.3 =
56
  * fix bug showing error message permanently on login page
57
 
3
  Donate link: http://picklewagon.com/wordpress/new-user-approve/donate
4
  Tags: users, registration
5
  Requires at least: 3.2.1
6
+ Tested up to: 3.4
7
+ Stable tag: 1.3.4
8
 
9
  New User Approve is a Wordpress plugin that allows a blog administrator to
10
  approve a user before they are able to access and login to the blog.
52
 
53
  == Changelog ==
54
 
55
+ = 1.3.4 =
56
+ * remove unused screen_layout_columns filter
57
+ * tested with WordPress 3.4
58
+
59
  = 1.3.3 =
60
  * fix bug showing error message permanently on login page
61