Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
07/29/2020 06:44:23 PM (4 years ago)
Author:
boonebgorges
Message:

Remove terms blacklist and whitelist in inline comments and local variables.

The change is in order to promote clearer and more inclusive language.

See #8339.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-members/bp-members-functions.php

    r12693 r12694  
    15881588 *   - Is the email address well-formed?
    15891589 *   - Is the email address already used?
    1590  *   - If there's an email domain blacklist, is the current domain on it?
     1590 *   - If there are disallowed email domains, is the current domain among them?
    15911591 *   - If there's an email domain whitelest, is the current domain on it?
    15921592 *
     
    17051705        }
    17061706
    1707         // User name can't be on the blacklist.
     1707        // User name can't be on the list of illegal names.
    17081708        $illegal_names = get_site_option( 'illegal_names' );
    17091709        if ( in_array( $user_name, (array) $illegal_names ) ) {
Note: See TracChangeset for help on using the changeset viewer.