Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/28/2024 05:49:21 PM (21 months ago)
Author:
imath
Message:

Fix some inline comment typo errors

Props shailu25

Fixes #9109

File:
1 edited

Legend:

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

    r13619 r13743  
    836836
    837837    /**
    838      * Fires at the end of the process for hanlding spammer status.
     838     * Fires at the end of the process for handling spammer status.
    839839     *
    840840     * @since 1.5.5
     
    15881588 *   - Is the email address already used?
    15891589 *   - If there are disallowed email domains, is the current domain among them?
    1590  *   - If there's an email domain whitelest, is the current domain on it?
     1590 *   - If there's an email domain whitelist, is the current domain on it?
    15911591 *
    15921592 * @since 1.6.2
     
    16221622    }
    16231623
    1624     // Is the email alreday in use?
     1624    // Is the email already in use?
    16251625    if ( email_exists( $user_email ) ) {
    16261626        $errors['in_use'] = 1;
     
    27302730            'separate_items_with_commas' => _x( 'Separate member types with commas', 'Member type taxonomy separate items with commas label', 'buddypress' ),
    27312731            'add_or_remove_items'        => _x( 'Add or remove member types', 'Member type taxonomy add or remove items label', 'buddypress' ),
    2732             'choose_from_most_used'      => _x( 'Choose from the most used meber types', 'Member type taxonomy choose from most used label', 'buddypress' ),
     2732            'choose_from_most_used'      => _x( 'Choose from the most used member types', 'Member type taxonomy choose from most used label', 'buddypress' ),
    27332733            'not_found'                  => _x( 'No member types found.', 'Member type taxonomy not found label', 'buddypress' ),
    27342734            'no_terms'                   => _x( 'No member types', 'Member type taxonomy no terms label', 'buddypress' ),
     
    29002900    // Directory slug.
    29012901    if ( $r['has_directory'] ) {
    2902         // A string value is intepreted as the directory slug. Otherwise fall back on member type.
     2902        // A string value is interpreted as the directory slug. Otherwise fall back on member type.
    29032903        if ( is_string( $r['has_directory'] ) ) {
    29042904            $directory_slug = $r['has_directory'];
     
    34583458    );
    34593459
    3460     // Create the invitataion.
     3460    // Create the invitation.
    34613461    $invites_class = new BP_Members_Invitation_Manager();
    34623462    $created       = $invites_class->add_invitation( $inv_args );
Note: See TracChangeset for help on using the changeset viewer.