From 5cce7674caceede3606f3e1d9e6780ee443ab306 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Wed, 20 Sep 2023 08:44:20 +0000 Subject: [PATCH] Coding Standards: Add missing escaping functions in `wp-admin/export.php` Props viralsampat. See #58831. Built from https://develop.svn.wordpress.org/trunk@56632 git-svn-id: http://core.svn.wordpress.org/trunk@56144 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/export.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/export.php b/wp-admin/export.php index e073a24f29..1955f2b42e 100644 --- a/wp-admin/export.php +++ b/wp-admin/export.php @@ -160,7 +160,7 @@ function export_date_options( $post_type = 'post' ) { } $month = zeroise( $date->month, 2 ); - echo ''; + echo ''; } } ?> diff --git a/wp-includes/version.php b/wp-includes/version.php index 9d19d4e3b6..609f2584a0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.4-alpha-56631'; +$wp_version = '6.4-alpha-56632'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.