Ticket #2503: 2503.001.patch
File 2503.001.patch, 872 bytes (added by , 15 years ago) |
---|
-
buddypress/bp-core/bp-core-templatetags.php
1034 1034 // Eventually this won't be needed and a page will be built to integrate all search results. 1035 1035 $selection_box = '<select name="search-which" id="search-which" style="width: auto">'; 1036 1036 1037 do_action( 'bp_search_form_before_options' ); 1038 1037 1039 if ( function_exists( 'xprofile_install' ) ) 1038 1040 $selection_box .= '<option value="members">' . __( 'Members', 'buddypress' ) . '</option>'; 1039 1041 … … 1045 1047 1046 1048 if ( function_exists( 'bp_blogs_install' ) && bp_core_is_multisite() ) 1047 1049 $selection_box .= '<option value="blogs">' . __( 'Blogs', 'buddypress' ) . '</option>'; 1050 1051 do_action( 'bp_search_form_after_options' ); 1048 1052 1049 1053 $selection_box .= '</select>'; 1050 1054