Making WordPress.org


Ignore:
Timestamp:
04/04/2018 03:05:24 AM (7 years ago)
Author:
dd32
Message:

Plugin Directory: Readme Validator: Add a warning when a contributor in the readme is ignored.

Fixes #249.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/readme/class-parser.php

    r6287 r7021  
    8787     */
    8888    public $faq = array();
     89
     90    /**
     91     * Flag to specify that a Contributor was ignored.
     92     *
     93     * @var bool
     94     */
     95    public $contributor_ignored = false;
    8996
    9097    /**
     
    544551            if ( ! $user ) {
    545552                unset( $users[ $i ] );
     553                $this->contributor_ignored = true;
    546554                continue;
    547555            }
Note: See TracChangeset for help on using the changeset viewer.