Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/12/2021 08:43:39 PM (3 years ago)
Author:
espellcaste
Message:

Update all references from wp_parse_args to bp_parse_args.

Also, add WPCS improvements to align bp_parse_args correctly.

Props imath
Fixes #8564

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-messages/classes/class-bp-messages-box-template.php

    r13096 r13108  
    127127        }
    128128
    129         $r = wp_parse_args( $args, array(
    130             'page'         => 1,
    131             'per_page'     => 10,
    132             'page_arg'     => 'mpage',
    133             'box'          => 'inbox',
    134             'type'         => 'all',
    135             'user_id'      => bp_loggedin_user_id(),
    136             'max'          => false,
    137             'search_terms' => '',
    138             'meta_query'   => array(),
    139         ) );
     129        $r = bp_parse_args(
     130            $args,
     131            array(
     132                'page'         => 1,
     133                'per_page'     => 10,
     134                'page_arg'     => 'mpage',
     135                'box'          => 'inbox',
     136                'type'         => 'all',
     137                'user_id'      => bp_loggedin_user_id(),
     138                'max'          => false,
     139                'search_terms' => '',
     140                'meta_query'   => array(),
     141            )
     142        );
    140143
    141144        $this->pag_arg      = sanitize_key( $r['page_arg'] );
Note: See TracChangeset for help on using the changeset viewer.