Tests: Change a few remaining `include_once` statements to `require_once`, for consistency.

See #48082.
Built from https://develop.svn.wordpress.org/trunk@47200


git-svn-id: http://core.svn.wordpress.org/trunk@47000 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-02-06 21:42:06 +00:00
parent d69005e1d8
commit b95cee937e
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ function render_block_core_search( $attributes ) {
}
$input_markup = sprintf(
'<input type="search" id="%s" class="wp-block-search__input" name="s" value="%s" placeholder="%s" />',
'<input type="search" id="%s" class="wp-block-search__input" name="s" value="%s" placeholder="%s" required />',
$input_id,
esc_attr( get_search_query() ),
esc_attr( $attributes['placeholder'] )

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.4-alpha-47199';
$wp_version = '5.4-alpha-47200';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.