Changeset 775344
- Timestamp:
- 09/19/2013 01:25:08 PM (13 years ago)
- Location:
- private-community-for-bp-lite
- Files:
-
- 5 added
- 3 edited
-
tags/3.8 (added)
-
tags/3.8/gpl.txt (added)
-
tags/3.8/loader.php (added)
-
tags/3.8/private-community-for-bp.php (added)
-
tags/3.8/readme.txt (added)
-
trunk/loader.php (modified) (1 diff)
-
trunk/private-community-for-bp.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
private-community-for-bp-lite/trunk/loader.php
r771808 r775344 6 6 of the posts/pages you set in Dashboard/Settings/PrivateCommunityBP. 7 7 Blocks RSS feeds to logged out visitors. 8 Version: 3. 78 Version: 3.8 9 9 Requires at least: 3.2.1 10 10 Tested up to: 3.6.1 -
private-community-for-bp-lite/trunk/private-community-for-bp.php
r765212 r775344 93 93 94 94 /* Prevent RSS Feeds */ 95 function cut_nonreg_visitor_rss_feed() {95 function pcfbp_cut_nonreg_visitor_rss_feed() { 96 96 if ( !is_user_logged_in() ) { 97 97 remove_action( 'bp_actions', 'bp_activity_action_sitewide_feed' ,3 ); … … 104 104 } 105 105 } 106 add_action('init', ' cut_nonreg_visitor_rss_feed');106 add_action('init', 'pcfbp_cut_nonreg_visitor_rss_feed'); 107 107 /* End Prevent RSS Feeds */ 108 108 -
private-community-for-bp-lite/trunk/readme.txt
r771808 r775344 5 5 Tested up to: 3.6.1 6 6 License: GNU/GPL 2 7 Stable tag: 3. 77 Stable tag: 3.8 8 8 9 9 Makes BP pages private and only accessable to logged in users with the … … 72 72 == Changelog == 73 73 74 = 3.8 = 75 Fixed potential redeclare function call if using one of my other plugins 76 74 77 = 3.7 = 75 78 Added more unblocked fields for a total of 20. … … 102 105 == Upgrade Notice == 103 106 107 = 3.8 = 108 Fixed potential redeclare function call if using one of my other plugins 109 104 110 = 3.7 = 105 111 Added more unblocked fields for a total of 20.
Note: See TracChangeset
for help on using the changeset viewer.