<form action="' . bp_search_form_action() . '" method="post" id="search-form">
<input type="text" id="search-terms" name="search-terms" value="" />
' . bp_search_form_type_select() . '
<input type="submit" name="search-submit" id="search-submit" value="' . __( 'Search', 'buddypress' ) . '" />
' . wp_nonce_field( 'bp_search_form' ) . '
</form>
';
echo apply_filters( 'bp_search_form', $form );
}
/**
* Some _is_ function had their names normalized
*/
function bp_is_profile_edit() {
_deprecated_function( __FUNCTION__, '1.5', 'bp_is_user_profile_edit()' );
return bp_is_user_profile_edit();
}