Changeset 1336035
- Timestamp:
- 01/26/2016 04:59:39 AM (10 years ago)
- Location:
- wp-sentry/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
wp-sentry.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-sentry/trunk/readme.txt
r672605 r1336035 4 4 Tags: posts, pages, users, security, restrict, restriction, groups, private 5 5 Requires at least: 2.5.0 6 Tested up to: 2.8.47 Stable tag: trunk6 Tested up to: 4.4.1 7 Stable tag: 0.9 8 8 9 9 WP Sentry allows WordPress authors to grant access to individual private posts to users and groups of users. -
wp-sentry/trunk/wp-sentry.php
r672613 r1336035 3 3 Plugin Name: WP Sentry 4 4 Plugin URI: http://www.weigoldenterprises.com/products/wordpress-plugins/wp-sentry/ 5 Version: 0. 8d5 Version: 0.9 6 6 Description: Granular user and group access controls for private posts. 7 7 Author: Steve Weigold … … 29 29 - Comments of private posts appear in the dashboard (bug submitted: http://trac.wordpress.org/ticket/8559) 30 30 31 Version History 32 V0.9 20160125 Corrected typos in column checks causing display issue with other plugins. Thanks to jmonesti 33 for help in finding the issue. 31 34 */ 32 35 … … 1455 1458 */ 1456 1459 function do_posts_columns($column_name, $id) { 1457 if ($column_name = 'wp-sentry') {1460 if ($column_name == 'wp-sentry') { 1458 1461 $this->do_posts_pages_columns($id, 'posts'); 1459 1462 } … … 1464 1467 */ 1465 1468 function do_pages_columns($column_name, $id) { 1466 if ($column_name = 'wp-sentry') {1469 if ($column_name == 'wp-sentry') { 1467 1470 $this->do_posts_pages_columns($id, 'pages'); 1468 1471 }
Note: See TracChangeset
for help on using the changeset viewer.