diff --git a/wp-includes/class-wp-object-cache.php b/wp-includes/class-wp-object-cache.php
index fafdc8b9e5..428e453631 100644
--- a/wp-includes/class-wp-object-cache.php
+++ b/wp-includes/class-wp-object-cache.php
@@ -441,7 +441,7 @@ class WP_Object_Cache {
echo '
';
echo '';
foreach ( $this->cache as $group => $cache ) {
- echo "- Group: $group - ( " . number_format( strlen( serialize( $cache ) ) / KB_IN_BYTES, 2 ) . 'k )
';
+ echo '- Group: ' . esc_html( $group ) . ' - ( ' . number_format( strlen( serialize( $cache ) ) / KB_IN_BYTES, 2 ) . 'k )
';
}
echo '
';
}
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 2c13d9bd8a..e6fc51d75e 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
-$wp_version = '5.5-alpha-47636';
+$wp_version = '5.5-alpha-47637';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.