Skip to:
Content

BuddyPress.org

Ticket #8892: 8892.3.patch

File 8892.3.patch, 2.8 KB (added by upadalavipul, 19 months ago)

few more files in found unused variable.

  • src/bp-activity/bp-activity-admin.php

     
    984984 * @param object $item Activity item.
    985985 */
    986986function bp_activity_admin_edit_metabox_type( $item ) {
    987         $bp = buddypress();
    988987
    989988        $actions  = array();
    990989        $selected = $item->type;
  • src/bp-activity/classes/class-bp-activity-list-table.php

     
    9595                $filter_query     = false;
    9696                $include_id       = false;
    9797                $search_terms     = false;
    98                 $sort             = 'DESC';
    9998                $spam             = 'ham_only';
    10099
    101100                // Set current page.
  • src/bp-core/admin/bp-core-admin-functions.php

     
    11711171        );
    11721172
    11731173        $tax_name = esc_attr( $r['taxonomy'] );
    1174         $taxonomy = get_taxonomy( $r['taxonomy'] );
    11751174        ?>
    11761175        <div id="taxonomy-<?php echo $tax_name; ?>" class="categorydiv">
    11771176                <div id="<?php echo $tax_name; ?>-all" class="tabs-panel">
  • src/bp-core/admin/bp-core-admin-schema.php

     
    613613function bp_core_install_nonmember_opt_outs() {
    614614        $sql             = array();
    615615        $charset_collate = $GLOBALS['wpdb']->get_charset_collate();
    616         $bp_prefix       = bp_core_get_table_prefix();
    617616        $optouts_class   = new BP_Optout();
    618617        $table_name      = $optouts_class->get_table_name();
    619618        $sql = "CREATE TABLE {$table_name} (
  • src/bp-core/bp-core-avatars.php

     
    1717 */
    1818function bp_core_set_avatar_constants() {
    1919
    20         $bp = buddypress();
    21 
    2220        if ( !defined( 'BP_AVATAR_THUMB_WIDTH' ) )
    2321                define( 'BP_AVATAR_THUMB_WIDTH', 50 );
    2422
  • src/bp-notifications/bp-notifications-functions.php

     
    928928                'order'    => 'DESC',
    929929        ) );
    930930
    931         $user_data_to_export = array();
    932 
    933931        foreach ( $notifications as $notification ) {
    934932                if ( 'xprofile' === $notification->component_name ) {
    935933                        $component_name = 'profile';