I18N: Remove <code> tags in an error message in WP_REST_Posts_Controller::get_item_schema() for consistency with other strings.

Follow-up to [48610].

See #50759.
Built from https://develop.svn.wordpress.org/trunk@48613


git-svn-id: http://core.svn.wordpress.org/trunk@48375 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-07-25 16:41:02 +00:00
parent 92f66488a3
commit ebfe7ca39a
2 changed files with 2 additions and 2 deletions

View File

@ -2430,7 +2430,7 @@ class WP_REST_Posts_Controller extends WP_REST_Controller {
sprintf( sprintf(
/* translators: %s: register_rest_field */ /* translators: %s: register_rest_field */
__( 'Please use %s to add new schema properties.' ), __( 'Please use %s to add new schema properties.' ),
'<code>register_rest_field<code>' 'register_rest_field'
), ),
'5.4.0' '5.4.0'
); );

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.5-beta3-48612'; $wp_version = '5.5-beta3-48613';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.