Script Loader: Update jQuery version to 3.6.4 to match the current version.

This changeset updates the jQuery version to 3.6.4 in `script-loader.php` to correctly match the current version used in WordPress.

This was accidentally missed in [55491].

Props nickpap, TobiasBg, dhrumilk.
Merges [55713] to the 6.2 branch.
Fixes #58203.
See #57324.

Built from https://develop.svn.wordpress.org/branches/6.2@55730


git-svn-id: http://core.svn.wordpress.org/branches/6.2@55242 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
audrasjb 2023-05-08 20:12:20 +00:00
parent 8df7e41b8a
commit c3dff809b7
2 changed files with 2 additions and 2 deletions

View File

@ -823,7 +823,7 @@ function wp_default_scripts( $scripts ) {
// jQuery.
// The unminified jquery.js and jquery-migrate.js are included to facilitate debugging.
$scripts->add( 'jquery', false, array( 'jquery-core', 'jquery-migrate' ), '3.6.4' );
$scripts->add( 'jquery-core', "/wp-includes/js/jquery/jquery$suffix.js", array(), '3.6.3' );
$scripts->add( 'jquery-core', "/wp-includes/js/jquery/jquery$suffix.js", array(), '3.6.4' );
$scripts->add( 'jquery-migrate', "/wp-includes/js/jquery/jquery-migrate$suffix.js", array(), '3.4.0' );
// Full jQuery UI.

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.2.1-alpha-55729';
$wp_version = '6.2.1-alpha-55730';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.