diff --git a/src/js/media/views/modal.js b/src/js/media/views/modal.js index 3804b18feb..7253d5cd4d 100644 --- a/src/js/media/views/modal.js +++ b/src/js/media/views/modal.js @@ -132,7 +132,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. diff --git a/src/wp-admin/includes/media.php b/src/wp-admin/includes/media.php index 6626937568..93d850d606 100644 --- a/src/wp-admin/includes/media.php +++ b/src/wp-admin/includes/media.php @@ -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() ) { diff --git a/src/wp-includes/script-loader.php b/src/wp-includes/script-loader.php index cde954418b..9680c4d8c6 100644 --- a/src/wp-includes/script-loader.php +++ b/src/wp-includes/script-loader.php @@ -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 );