From d73323e96944a9dbd16ef8edc9c055b1cbc7b735 Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Wed, 3 May 2023 21:25:40 +0000 Subject: [PATCH] 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 correcly match the current version used in WordPress. This was accidentally missed in [55491]. Props nickpap, TobiasBg, dhrumilk. Fixes #58203. See #57324. git-svn-id: https://develop.svn.wordpress.org/trunk@55713 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/script-loader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/script-loader.php b/src/wp-includes/script-loader.php index 20c7bf25915a9..74b347ec67e95 100644 --- a/src/wp-includes/script-loader.php +++ b/src/wp-includes/script-loader.php @@ -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.