Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
01/29/2020 09:43:16 PM (6 years ago)
Author:
imath
Message:

Core: fix PHP code standards & typos in inline comments

Props passoniate

Fixes #8225
Fixes #8226
Fixes #8227
Fixes #8228
Fixes #8229

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/deprecated/1.5.php

    r11763 r12547  
    88 */
    99
    10 // Exit if accessed directly
     10// Exit if accessed directly.
    1111defined( 'ABSPATH' ) || exit;
    1212
     
    7575/**
    7676 * In BuddyPress 1.1 - 1.2.x, this function provided a better version of add_menu_page()
    77  * that allowed positioning of menus. Deprecated in 1.5 in favour of a WP core function.
     77 * that allowed positioning of menus. Deprecated in 1.5 in favor of a WP core function.
    7878 *
    7979 * @deprecated 1.5.0
     
    342342                        continue;
    343343
    344                 // Now email the user with the contents of the message (if they have enabled email notifications)
     344                // Now email the user with the contents of the message (if they have enabled email notifications).
    345345                if ( 'no' != bp_get_user_meta( $receiver_user_id, 'notification_activity_new_mention', true ) ) {
    346346                        $poster_name = bp_core_get_user_displayname( $poster_user_id );
     
    353353                        $content = bp_groups_filter_kses( stripslashes( $content ) );
    354354
    355                         // Set up and send the message
     355                        // Set up and send the message.
    356356                        $ud = bp_core_get_core_userdata( $receiver_user_id );
    357357                        $to = $ud->user_email;
Note: See TracChangeset for help on using the changeset viewer.