Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/12/2021 08:43:39 PM (4 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-activity/classes/class-bp-activity-template.php

    r12426 r13108  
    187187            'update_meta_cache' => true,
    188188        );
    189         $r = wp_parse_args( $args, $defaults );
     189
     190        $r = bp_parse_args(
     191            $args,
     192            $defaults
     193        );
     194
    190195        extract( $r );
    191196
Note: See TracChangeset for help on using the changeset viewer.