diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 17319c7f46..9373036210 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1548,11 +1548,11 @@ function nocache_headers() { * @since 2.1.0 */ function cache_javascript_headers() { - $expiresOffset = 10 * DAY_IN_SECONDS; + $expires_offset = 10 * DAY_IN_SECONDS; header( 'Content-Type: text/javascript; charset=' . get_bloginfo( 'charset' ) ); header( 'Vary: Accept-Encoding' ); // Handle proxies. - header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + $expiresOffset ) . ' GMT' ); + header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + $expires_offset ) . ' GMT' ); } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 5fea95cec6..72c0faa349 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.5-alpha-57531'; +$wp_version = '6.5-alpha-57532'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.