Skip to:
Content

BuddyPress.org

Ticket #8892: 8892.2.patch

File 8892.2.patch, 3.8 KB (added by upadalavipul, 19 months ago)

few more files in found unused variable.

  • src/bp-groups/bp-groups-notifications.php

     
    313313 */
    314314function groups_notification_group_invites( &$group, &$member, $inviter_user_id ) {
    315315
    316         // @todo $inviter_ud may be used for caching, test without it
    317         $inviter_ud      = bp_core_get_core_userdata( $inviter_user_id );
    318 
    319316        if ( $member instanceof BP_Groups_Member ) {
    320317                $invited_user_id = $member->user_id;
    321318        } else if ( is_int( $member ) ) {
  • src/bp-groups/classes/class-bp-groups-component.php

     
    381381
    382382                        // Set group type if available.
    383383                        if ( bp_is_current_action( bp_get_groups_group_type_base() ) && bp_action_variable() ) {
    384                                 $matched_type  = '';
    385384                                $matched_types = bp_groups_get_group_types(
    386385                                        array(
    387386                                                'has_directory'  => true,
     
    766765                        if ( bp_is_item_admin() ) {
    767766                                // Get the "manage" screens.
    768767                                $manage_screens    = bp_get_group_screens( 'manage', true );
    769                                 $admin_link        = bp_get_group_url(
    770                                         $this->current_group,
    771                                         array(
    772                                                 'single_item_action' => bp_rewrites_get_slug( 'groups', 'bp_group_read_admin', 'admin' ),
    773                                         )
    774                                 );
    775768
    776769                                // Common params to all nav items.
    777770                                $default_params = array(
  • src/bp-groups/classes/class-bp-groups-list-table.php

     
    8585
    8686                // Option defaults.
    8787                $include_id   = false;
    88                 $search_terms = false;
    8988
    9089                // Set current page.
    9190                $page = $this->get_pagenum();
     
    120119
    121120                // Are we doing a search?
    122121                if ( ! empty( $_REQUEST['s'] ) ) {
    123                         $search_terms = $_REQUEST['s'];
    124 
     122                       
    125123                        // Set the view as a search request.
    126124                        $this->view = 'search';
    127125                }
  • src/bp-members/bp-members-activity.php

     
    240240        }
    241241
    242242        // Add the activity.
    243         $activity_id = bp_activity_add(
     243        bp_activity_add(
    244244                array(
    245245                        'user_id'       => $user_id,
    246246                        'component'     => $bp->members->id,
  • src/bp-members/screens/activate.php

     
    4444                bp_core_redirect( $redirect_to );
    4545        }
    4646
    47         // Get BuddyPress.
    48         $bp = buddypress();
    49 
    5047        /**
    5148         * Filters the template to load for the Member activation page screen.
    5249         *
     
    8582                return;
    8683        }
    8784
    88         $bp       = buddypress();
    8985        $redirect = bp_get_activation_page();
    9086
    9187        /**
  • src/bp-xprofile/classes/class-bp-xprofile-field-type-checkbox-acceptance.php

     
    8686         */
    8787        public function edit_field_html( array $raw_properties = array() ) {
    8888                $user_id   = bp_displayed_user_id();
    89                 $required  = false;
    9089                $default_r = array();
    9190
    9291                if ( isset( $raw_properties['user_id'] ) ) {
     
    9695
    9796                if ( bp_get_the_profile_field_is_required() ) {
    9897                        $default_r['required'] = 'required'; // HTML5 required attribute.
    99                         $required              = true;
    10098                }
    10199
    102100                $r = bp_parse_args(