Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
01/02/2017 08:13:14 PM (8 years ago)
Author:
tw2113
Message:

Removes usage of create_function across various BuddyPress components.

See #7325.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-friends/bp-friends-widgets.php

    r11360 r11366  
    2828    }
    2929
    30     add_action( 'widgets_init', create_function( '', 'return register_widget("BP_Core_Friends_Widget");' ) );
     30    add_action( 'widgets_init', function() { register_widget( 'BP_Core_Friends_Widget' ); } );
    3131}
    3232add_action( 'bp_register_widgets', 'bp_friends_register_widgets' );
Note: See TracChangeset for help on using the changeset viewer.