WordPress Access Control - Version 3.0.5

Version Description

  • June 6, 2011 =

  • Fixed the PHP issue properly this time

Download this release

Release Info

Developer brandon.wamboldt
Plugin Icon wp plugin WordPress Access Control
Version 3.0.5
Comparing to
See all releases

Code changes from version 3.0.4 to 3.0.5

public/css/wpac.css CHANGED
File without changes
public/images/lock.png CHANGED
File without changes
public/images/unlock.png CHANGED
File without changes
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: members, only, plugin, restricted, access, menus, 3.0, wp_nav_menu, nonmembers
5
  Requires at least: 2.9
6
  Tested up to: 3.2
7
- Stable tag: 3.0.4
8
 
9
  Restrict pages, posts and custom post types to members, nonmembers or specific roles and still add to navigation
10
 
@@ -50,7 +50,11 @@ Please leave a comment at http://brandonwamboldt.ca/plugins/members-only-menu-pl
50
 
51
  == Changelog ==
52
 
53
- = 3.0.4 - June 5, 2011 =
 
 
 
 
54
 
55
  * Fixed a PHP issue if a second argument wasn't supplied to several functions
56
 
4
  Tags: members, only, plugin, restricted, access, menus, 3.0, wp_nav_menu, nonmembers
5
  Requires at least: 2.9
6
  Tested up to: 3.2
7
+ Stable tag: 3.0.5
8
 
9
  Restrict pages, posts and custom post types to members, nonmembers or specific roles and still add to navigation
10
 
50
 
51
  == Changelog ==
52
 
53
+ = 3.0.5 - June 6, 2011 =
54
+
55
+ * Fixed the PHP issue properly this time
56
+
57
+ = 3.0.4 - June 6, 2011 =
58
 
59
  * Fixed a PHP issue if a second argument wasn't supplied to several functions
60
 
screenshot-1.png CHANGED
File without changes
screenshot-2.png CHANGED
File without changes
templates/meta_box.php CHANGED
File without changes
wordpress-access-control.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: http://brandonwamboldt.ca/plugins/members-only-menu-plugin/
5
  * Author: Brandon Wamboldt
6
  * Author URI: http://brandonwamboldt.ca/
7
- * Version: 3.0.4
8
  * Description: This plugin is a powerful tool which gives you fine grained control over your pages and posts (and custom post types), allowing you to restrict a page, post, or custom post type to members, non-members, or even specific roles. You can customize how these pages and posts show up in search results, where users are directed when they visit them, and much more. <strong>You can even make your entire blog members only!</strong>.
9
  */
10
 
@@ -21,8 +21,8 @@ add_filter( 'manage_edit-page_columns', array( 'WordPressAccessControl', 'add_co
21
  add_filter( 'the_excerpt', array( 'WordPressAccessControl', 'remove_excerpt' ) );
22
  add_filter( 'the_content', array( 'WordPressAccessControl', 'remove_excerpt' ) );
23
  add_filter( 'plugin_row_meta', array( 'WordPressAccessControl', 'plugin_row_meta' ), 10, 5 );
24
- add_filter( 'posts_join_paged', array( 'WordPressAccessControl', 'posts_join_paged' ) );
25
- add_filter( 'posts_where_paged', array( 'WordPressAccessControl', 'posts_where_paged' ) );
26
 
27
  add_shortcode( 'member', array( 'WordPressAccessControl', 'shortcode_members' ) );
28
  add_shortcode( 'members', array( 'WordPressAccessControl', 'shortcode_members' ) );
@@ -757,4 +757,4 @@ class WordPressAccessControl
757
 
758
  return '';
759
  }
760
- }
4
  * Plugin URI: http://brandonwamboldt.ca/plugins/members-only-menu-plugin/
5
  * Author: Brandon Wamboldt
6
  * Author URI: http://brandonwamboldt.ca/
7
+ * Version: 3.0.5
8
  * Description: This plugin is a powerful tool which gives you fine grained control over your pages and posts (and custom post types), allowing you to restrict a page, post, or custom post type to members, non-members, or even specific roles. You can customize how these pages and posts show up in search results, where users are directed when they visit them, and much more. <strong>You can even make your entire blog members only!</strong>.
9
  */
10
 
21
  add_filter( 'the_excerpt', array( 'WordPressAccessControl', 'remove_excerpt' ) );
22
  add_filter( 'the_content', array( 'WordPressAccessControl', 'remove_excerpt' ) );
23
  add_filter( 'plugin_row_meta', array( 'WordPressAccessControl', 'plugin_row_meta' ), 10, 5 );
24
+ add_filter( 'posts_join_paged', array( 'WordPressAccessControl', 'posts_join_paged' ), 10, 2 );
25
+ add_filter( 'posts_where_paged', array( 'WordPressAccessControl', 'posts_where_paged' ), 10, 2 );
26
 
27
  add_shortcode( 'member', array( 'WordPressAccessControl', 'shortcode_members' ) );
28
  add_shortcode( 'members', array( 'WordPressAccessControl', 'shortcode_members' ) );
757
 
758
  return '';
759
  }
760
+ }