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-templates/bp-nouveau/includes/groups/functions.php

    r13095 r13108  
    253253 */
    254254function bp_nouveau_get_group_potential_invites( $args = array() ) {
    255     $r = bp_parse_args( $args, array(
    256         'group_id'     => bp_get_current_group_id(),
    257         'type'         => 'alphabetical',
    258         'per_page'     => 20,
    259         'page'         => 1,
    260         'search_terms' => false,
    261         'member_type'  => false,
    262         'user_id'      => 0,
    263         'is_confirmed' => true,
    264     ) );
     255    $r = bp_parse_args(
     256        $args,
     257        array(
     258            'group_id'     => bp_get_current_group_id(),
     259            'type'         => 'alphabetical',
     260            'per_page'     => 20,
     261            'page'         => 1,
     262            'search_terms' => false,
     263            'member_type'  => false,
     264            'user_id'      => 0,
     265            'is_confirmed' => true,
     266        )
     267    );
    265268
    266269    if ( empty( $r['group_id'] ) ) {
Note: See TracChangeset for help on using the changeset viewer.