Changeset 13743 for trunk/src/bp-members/bp-members-functions.php
- Timestamp:
- 02/28/2024 05:49:21 PM (21 months ago)
- File:
-
- 1 edited
-
trunk/src/bp-members/bp-members-functions.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-members/bp-members-functions.php
r13619 r13743 836 836 837 837 /** 838 * Fires at the end of the process for han lding spammer status.838 * Fires at the end of the process for handling spammer status. 839 839 * 840 840 * @since 1.5.5 … … 1588 1588 * - Is the email address already used? 1589 1589 * - If there are disallowed email domains, is the current domain among them? 1590 * - If there's an email domain whitel est, is the current domain on it?1590 * - If there's an email domain whitelist, is the current domain on it? 1591 1591 * 1592 1592 * @since 1.6.2 … … 1622 1622 } 1623 1623 1624 // Is the email alre day in use?1624 // Is the email already in use? 1625 1625 if ( email_exists( $user_email ) ) { 1626 1626 $errors['in_use'] = 1; … … 2730 2730 'separate_items_with_commas' => _x( 'Separate member types with commas', 'Member type taxonomy separate items with commas label', 'buddypress' ), 2731 2731 '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 me ber 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' ), 2733 2733 'not_found' => _x( 'No member types found.', 'Member type taxonomy not found label', 'buddypress' ), 2734 2734 'no_terms' => _x( 'No member types', 'Member type taxonomy no terms label', 'buddypress' ), … … 2900 2900 // Directory slug. 2901 2901 if ( $r['has_directory'] ) { 2902 // A string value is inte preted 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. 2903 2903 if ( is_string( $r['has_directory'] ) ) { 2904 2904 $directory_slug = $r['has_directory']; … … 3458 3458 ); 3459 3459 3460 // Create the invitat aion.3460 // Create the invitation. 3461 3461 $invites_class = new BP_Members_Invitation_Manager(); 3462 3462 $created = $invites_class->add_invitation( $inv_args );
Note: See TracChangeset
for help on using the changeset viewer.