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

    r12976 r13108  
    175175        public function form( $instance = array() ) {
    176176
    177                 $settings = wp_parse_args( $instance, array(
    178                         'title' => '',
    179                 ) ); ?>
     177                $settings = bp_parse_args(
     178                        $instance,
     179                        array(
     180                                'title' => '',
     181                        )
     182                );
     183                ?>
    180184
    181185                <p>
Note: See TracChangeset for help on using the changeset viewer.