Skip to:
Content

BuddyPress.org

Changeset 13743


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

Fix some inline comment typo errors

Props shailu25

Fixes #9109

Location:
trunk/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-activity/bp-activity-embeds.php

    r13517 r13743  
    129129         *
    130130         * @since 2.6.0
    131          * 
     131         *
    132132         * @global BP_Activity_Template $activities_template The Activity template loop.
    133133         *
     
    167167 *
    168168 * @since 2.6.0
    169  * 
     169 *
    170170 * @global BP_Activity_Template $activities_template The Activity template loop.
    171  * 
     171 *
    172172 */
    173173function bp_activity_embed_media() {
     
    357357
    358358/**
    359  * Make sure the Activity embed template will be used if neded.
     359 * Make sure the Activity embed template will be used if needed.
    360360 *
    361361 * @since 12.0.0
  • 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 );
  • trunk/src/bp-messages/bp-messages-star.php

    r13503 r13743  
    233233 *     @type int    $thread_id  The message thread ID. Default: 0. If not zero, this takes precedence over
    234234 *                              $message_id.
    235  *     @type int    $message_id The indivudal message ID to star or unstar.  Default: 0.
     235 *     @type int    $message_id The individual message ID to star or unstar.  Default: 0.
    236236 *     @type int    $user_id    The user ID. Defaults to the logged-in user ID.
    237237 *     @type bool   $bulk       Whether to mark all messages in a thread as a certain action. Only relevant
  • trunk/src/bp-messages/bp-messages-template.php

    r13584 r13743  
    810810 * Output the unread messages count for the current inbox.
    811811 *
    812  * @since 2.6.x Added the `$user_id` paremeter.
     812 * @since 2.6.x Added the `$user_id` parameter.
    813813 *
    814814 * @param int $user_id The user ID.
     
    820820         * Get the unread messages count for the current inbox.
    821821         *
    822          * @since 2.6.x Added the `$user_id` paremeter.
     822         * @since 2.6.x Added the `$user_id` parameter.
    823823         *
    824824         * @param int $user_id The user ID.
     
    10281028}
    10291029        /**
    1030          * Get the default value fo the Compose content field.
     1030         * Get the default value for the Compose content field.
    10311031         *
    10321032         * Will get a value out of $_POST['content'] if available (ie after a
  • trunk/src/bp-templates/bp-nouveau/includes/template-tags.php

    r13652 r13743  
    162162
    163163/**
    164  * Ouptut the dismiss type.
     164 * Output the dismiss type.
    165165 *
    166166 * $type is used to set the data-attr for the button.
     
    578578
    579579                        /*
    580                          * Technically not a component but allows us to check the single group members loop as a seperate loop.
     580                         * Technically not a component but allows us to check the single group members loop as a separate loop.
    581581                         */
    582582                        'members_group'   => true,
Note: See TracChangeset for help on using the changeset viewer.