Plugin Directory

Changeset 1336035


Ignore:
Timestamp:
01/26/2016 04:59:39 AM (10 years ago)
Author:
sweigold
Message:

Revised readme with Wordpress versions. Corrects = vs == typo in admin menu column check

Location:
wp-sentry/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-sentry/trunk/readme.txt

    r672605 r1336035  
    44Tags: posts, pages, users, security, restrict, restriction, groups, private
    55Requires at least: 2.5.0
    6 Tested up to: 2.8.4
    7 Stable tag: trunk
     6Tested up to: 4.4.1
     7Stable tag: 0.9
    88
    99WP 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  
    33Plugin Name: WP Sentry
    44Plugin URI: http://www.weigoldenterprises.com/products/wordpress-plugins/wp-sentry/
    5 Version: 0.8d
     5Version: 0.9
    66Description: Granular user and group access controls for private posts.
    77Author: Steve Weigold
     
    2929  -  Comments of private posts appear in the dashboard (bug submitted: http://trac.wordpress.org/ticket/8559)
    3030
     31Version History
     32V0.9    20160125 Corrected typos in column checks causing display issue with other plugins. Thanks to jmonesti
     33        for help in finding the issue.
    3134*/
    3235
     
    14551458        */
    14561459        function do_posts_columns($column_name, $id) {
    1457             if ($column_name = 'wp-sentry') {
     1460            if ($column_name == 'wp-sentry') {
    14581461                $this->do_posts_pages_columns($id, 'posts');
    14591462            }
     
    14641467        */
    14651468        function do_pages_columns($column_name, $id) {
    1466             if ($column_name = 'wp-sentry') {
     1469            if ($column_name == 'wp-sentry') {
    14671470                $this->do_posts_pages_columns($id, 'pages');
    14681471            }
Note: See TracChangeset for help on using the changeset viewer.