diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index e667400f33..6b4a50752e 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -2553,9 +2553,9 @@ function compression_test() { * These key/value attribute pairs will be output as `attribute="value"`, * where attribute is the key. Attributes can also be provided as a string, * e.g. `id="search-submit"`, though the array format is generally preferred. - * Default null. + * Default empty string. */ -function submit_button( $text = null, $type = 'primary', $name = 'submit', $wrap = true, $other_attributes = null ) { +function submit_button( $text = '', $type = 'primary', $name = 'submit', $wrap = true, $other_attributes = '' ) { echo get_submit_button( $text, $type, $name, $wrap, $other_attributes ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 256c3a4637..b8e501bd07 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.5-alpha-57127'; +$wp_version = '6.5-alpha-57128'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.