From 5e42a6c9e539ec79a60b44433daff00b7832f694 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 14 May 2020 07:55:12 +0000 Subject: [PATCH] Export: Use correct escaping function for term IDs in `` nodes. Follow-up to [34333]. Props DrLightman, marcio-zebedeu. Fixes #50113. Built from https://develop.svn.wordpress.org/trunk@47789 git-svn-id: http://core.svn.wordpress.org/trunk@47565 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/export.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/export.php b/wp-admin/includes/export.php index 057e59f3dd..19b4630072 100644 --- a/wp-admin/includes/export.php +++ b/wp-admin/includes/export.php @@ -501,7 +501,7 @@ function export_wp( $args = array() ) { - term_id ); ?> + term_id ); ?> taxonomy ); ?> slug ); ?> parent ? $terms[ $t->parent ]->slug : '' ); ?> diff --git a/wp-includes/version.php b/wp-includes/version.php index 2088700bde..3f5a61e887 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-alpha-47788'; +$wp_version = '5.5-alpha-47789'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.