Skip to:
Content

BuddyPress.org

Ticket #2503: 2503.001.patch

File 2503.001.patch, 872 bytes (added by r-a-y, 15 years ago)
  • buddypress/bp-core/bp-core-templatetags.php

     
    10341034        // Eventually this won't be needed and a page will be built to integrate all search results.
    10351035        $selection_box = '<select name="search-which" id="search-which" style="width: auto">';
    10361036
     1037        do_action( 'bp_search_form_before_options' );
     1038
    10371039        if ( function_exists( 'xprofile_install' ) )
    10381040                $selection_box .= '<option value="members">' . __( 'Members', 'buddypress' ) . '</option>';
    10391041
     
    10451047
    10461048        if ( function_exists( 'bp_blogs_install' ) && bp_core_is_multisite() )
    10471049                $selection_box .= '<option value="blogs">' . __( 'Blogs', 'buddypress' ) . '</option>';
     1050
     1051        do_action( 'bp_search_form_after_options' );
    10481052
    10491053        $selection_box .= '</select>';
    10501054