Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/12/2021 08:43:39 PM (5 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-core/deprecated/1.2.php

    r12547 r13108  
    4545        );
    4646
    47         $args = wp_parse_args( $args, $defaults );
     47        $args = bp_parse_args(
     48                $args,
     49                $defaults
     50        );
    4851
    4952        return apply_filters( 'bp_activity_get_sitewide', BP_Activity_Activity::get( $args ), $r );
Note: See TracChangeset for help on using the changeset viewer.