Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
05/21/2018 01:14:05 AM (8 years ago)
Author:
djpaul
Message:

Templates, Nouveau: use bp_parse_args instead of wp_parse_args.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-nouveau/includes/groups/classes.php

    r12082 r12107  
    4040     */
    4141    public function build_exclude_args() {
    42         $this->query_vars = wp_parse_args( $this->query_vars, array(
    43             'group_id'     => 0,
    44             'is_confirmed' => true,
    45         ) );
     42        $this->query_vars = bp_parse_args(
     43            $this->query_vars,
     44            array(
     45                'group_id'     => 0,
     46                'is_confirmed' => true,
     47            ),
     48            'nouveau_group_invite_query_exlude_args'
     49        );
    4650
    4751        $group_member_ids = $this->get_group_member_ids();
Note: See TracChangeset for help on using the changeset viewer.