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-groups/classes/class-bp-groups-widget.php

    r12997 r13108  
    215215            'max_groups'    => 5,
    216216            'group_default' => 'active',
    217             'link_title'    => false
    218         );
    219         $instance = bp_parse_args( (array) $instance, $defaults, 'groups_widget_form' );
     217            'link_title'    => false,
     218        );
     219
     220        $instance = bp_parse_args(
     221            (array) $instance,
     222            $defaults,
     223            'groups_widget_form'
     224        );
    220225
    221226        $max_limit = bp_get_widget_max_count_limit( __CLASS__ );
Note: See TracChangeset for help on using the changeset viewer.