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/notifications/functions.php

    r12104 r12107  
    8585    $bp_nouveau = bp_nouveau();
    8686
    87     $r = wp_parse_args( $args, array(
    88         'id'       => '',
    89         'label'    => '',
    90         'position' => 99,
    91     ) );
     87    $r = bp_parse_args(
     88        $args,
     89        array(
     90            'id'       => '',
     91            'label'    => '',
     92            'position' => 99,
     93        ),
     94        'nouveau_notifications_register_filter'
     95    );
    9296
    9397    if ( empty( $r['id'] ) || empty( $r['label'] ) ) {
Note: See TracChangeset for help on using the changeset viewer.