Skip to:
Content

BuddyPress.org

Ticket #8892: 8892.7.patch

File 8892.7.patch, 6.0 KB (added by upadalavipul, 18 months ago)

few more files in found unused variable.

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

     
    3434                        'single_item_action'    => bp_rewrites_get_slug( 'members', 'member_' . $message_slug . '_inbox', 'inbox' ),
    3535                )
    3636        );
    37         $title               = __( 'Inbox', 'buddypress' );
    3837        $amount              = 'single';
    3938
    4039        if ( 'new_message' === $action ) {
  • src/bp-templates/bp-nouveau/includes/activity/template-tags.php

     
    552552                                $data_element = 'href';
    553553                        }
    554554
    555                         $spam_link = bp_rewrites_get_url(
    556                                 array(
    557                                         'component_id'                 => 'activity',
    558                                         'single_item_action'           => 'spam',
    559                                         'single_item_action_variables' => array( bp_get_activity_id() ),
    560                                 )
    561                         );
    562 
    563555                        $buttons['activity_spam']['button_attr'][ $data_element ] = wp_nonce_url(
    564556                                bp_rewrites_get_url(
    565557                                        array(
  • src/bp-templates/bp-nouveau/includes/blogs/template-tags.php

     
    191191                 *
    192192                 * Icons sets a class for icon display if not using the button element
    193193                 */
    194                 $icons = '';
    195194                if ( ! empty( $args['button_element'] ) ) {
    196195                        $button_element = $args['button_element'] ;
    197196                } else {
    198197                        $button_element = 'a';
    199                         $icons = ' icons';
    200198                }
    201199
    202200                // If we pass through parent classes add them to $button array
  • src/bp-templates/bp-nouveau/includes/customizer-controls.php

     
    3131         */
    3232        public function render_content() {
    3333                $id       = 'customize-control-' . str_replace( '[', '-', str_replace( ']', '', $this->id ) );
    34                 $class    = 'customize-control customize-control-' . $this->type;
    3534                $setting  = "bp_nouveau_appearance[{$this->type}_nav_order]";
    3635                $item_nav = array();
    3736
     
    7675                        <ul id="<?php echo esc_attr( $id ); ?>" class="ui-sortable" style="margin-top: 0px; height: 500px;" data-bp-type="<?php echo esc_attr( $this->type ); ?>">
    7776
    7877                                <?php
    79                                 $i = 0;
    8078                                foreach ( $item_nav as $item ) :
    81                                         $i += 1;
    8279                                ?>
    8380                                        <li data-bp-nav="<?php echo esc_attr( $item->slug ); ?>">
    8481                                                <div class="menu-item-bar">
  • src/bp-templates/bp-nouveau/includes/groups/ajax.php

     
    377377 * @since 3.0.0
    378378 */
    379379function bp_nouveau_ajax_send_group_invites() {
    380         $bp = buddypress();
    381380
    382381        $response = array(
    383382                'feedback' => __( 'Invites could not be sent. Please try again.', 'buddypress' ),
  • src/bp-templates/bp-nouveau/includes/groups/functions.php

     
    526526 */
    527527function bp_nouveau_restrict_rest_group_invite_to_friends( $retval, $request ) {
    528528        if ( true === $retval && bp_is_active( 'friends' ) ) {
    529                 $group_id   = $request->get_param( 'group_id' );
    530529                $user_id    = $request->get_param( 'user_id' );
    531530                $inviter_id = $request->get_param( 'inviter_id' );
    532531
  • src/bp-templates/bp-nouveau/includes/groups/template-tags.php

     
    696696                 *
    697697                 * Icons sets a class for icon display if not using the button element
    698698                 */
    699                 $icons = '';
    700699                if ( ! empty( $args['button_element'] ) ) {
    701700                        $button_element = $args['button_element'] ;
    702701                } else {
    703702                        $button_element = 'a';
    704                         $icons = ' icons';
    705703                }
    706704
    707705                // If we pass through parent classes add them to $button array
  • src/bp-templates/bp-nouveau/includes/members/template-tags.php

     
    255255                 *
    256256                 * Icons sets a class for icon display if not using the button element
    257257                 */
    258                 $icons = '';
    259258                if ( ! empty( $args['button_element'] ) ) {
    260259                        $button_element = $args['button_element'] ;
    261260                } else {
    262261                        $button_element = 'button';
    263                         $icons = ' icons';
    264262                }
    265263
    266264                // If we pass through parent classes add them to $button array
  • src/bp-templates/bp-nouveau/includes/template-tags.php

     
    474474                        break;
    475475        }
    476476
    477         $count_class = sprintf( '%1$s-%2$s-count-%3$s', $pagination_type, $screen, $position );
    478         $links_class = sprintf( '%1$s-%2$s-links-%3$s', $pagination_type, $screen, $position );
    479477        ?>
    480478
    481479        <?php
     
    24202418                        // Text fields are using strings, radios are using their inputs
    24212419                        $label_output = '<label for="%1$s">%2$s</label>';
    24222420                        $id           = $name;
    2423                         $classes      = '';
    24242421
    24252422                        if ( $required ) {
    24262423                                /* translators: Do not translate placeholders. 2 = form field name, 3 = "(required)". */