Version Description
June 5, 2011 =
Fixed a PHP issue if a second argument wasn't supplied to several functions
Download this release
Release Info
Developer | brandon.wamboldt |
Plugin | WordPress Access Control |
Version | 3.0.4 |
Comparing to | |
See all releases |
Code changes from version 3.0.3 to 3.0.4
- readme.txt +5 -1
- wordpress-access-control.php +2 -2
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.
|
8 |
|
9 |
Restrict pages, posts and custom post types to members, nonmembers or specific roles and still add to navigation
|
10 |
|
@@ -50,6 +50,10 @@ Please leave a comment at http://brandonwamboldt.ca/plugins/members-only-menu-pl
|
|
50 |
|
51 |
== Changelog ==
|
52 |
|
|
|
|
|
|
|
|
|
53 |
= 3.0.3 - June 5, 2011 =
|
54 |
|
55 |
* Added an option to apply members settings to all children of a page
|
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 |
|
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 |
+
|
57 |
= 3.0.3 - June 5, 2011 =
|
58 |
|
59 |
* Added an option to apply members settings to all children of a page
|
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.
|
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 |
|
@@ -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.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 |
|
757 |
|
758 |
return '';
|
759 |
}
|
760 |
+
}
|