Docs: Update some recently added inline comments per the documentation standards.

Follow-up to [50256], [50258], [50259].

See #51800.
Built from https://develop.svn.wordpress.org/trunk@50264


git-svn-id: http://core.svn.wordpress.org/trunk@49909 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2021-02-09 12:34:06 +00:00
parent ea2ff553e9
commit 19ce835654
4 changed files with 14 additions and 12 deletions

View File

@ -430,10 +430,10 @@ function media_handle_upload( $file_id, $post_id, $post_data = array(), $overrid
* @since 2.6.0
* @since 5.3.0 The `$post_id` parameter was made optional.
*
* @param string[] $file_array Array that represents a `$_FILES` upload array.
* @param int $post_id Optional. The post ID the media is associated with.
* @param string $desc Optional. Description of the side-loaded file. Default null.
* @param array $post_data Optional. Post data to override. Default empty array.
* @param string[] $file_array Array that represents a `$_FILES` upload array.
* @param int $post_id Optional. The post ID the media is associated with.
* @param string $desc Optional. Description of the side-loaded file. Default null.
* @param array $post_data Optional. Post data to override. Default empty array.
* @return int|WP_Error The ID of the attachment or a WP_Error on failure.
*/
function media_handle_sideload( $file_array, $post_id = 0, $desc = null, $post_data = array() ) {

View File

@ -4532,7 +4532,7 @@ Modal = wp.media.View.extend(/** @lends wp.media.view.Modal.prototype */{
return this;
}
// Pause current audio/video even after closing the modal
// Pause current audio/video even after closing the modal.
$( '.mejs-pause button' ).click();
// Enable page scrolling.

View File

@ -268,12 +268,14 @@ function wp_default_packages_scripts( $scripts ) {
$scripts->set_translations( $handle );
}
// Manually set the text direction localization after wp-i18n is
// printed. This ensures that wp.i18n.isRTL() returns true in RTL
// languages. We cannot use $scripts->set_translations( 'wp-i18n' ) to
// do this because WordPress prints a script's translations *before*
// printing the script, which means, in the case of wp-i18n, that
// wp.i18n.setLocaleData() is called before wp.i18n is defined.
/*
* Manually set the text direction localization after wp-i18n is printed.
* This ensures that wp.i18n.isRTL() returns true in RTL languages.
* We cannot use $scripts->set_translations( 'wp-i18n' ) to do this
* because WordPress prints a script's translations *before* the script,
* which means, in the case of wp-i18n, that wp.i18n.setLocaleData()
* is called before wp.i18n is defined.
*/
if ( 'wp-i18n' === $handle ) {
$ltr = _x( 'ltr', 'text direction', 'default' );
$script = sprintf( "wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ '%s' ] } );", $ltr );

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.7-beta1-50263';
$wp_version = '5.7-beta1-50264';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.