From 48225beffb5154f72a15b9f8f54076a8ec75d925 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 11 Apr 2020 15:09:11 +0000 Subject: [PATCH] Rewrite Rules: Use double quotes instead of backticks in `.htaccess` instructions about `# BEGIN/END` markers. Previously, the backticks resulted in extra markup being added when posted on support forums. Props mayankmajeji, knutsp. Fixes #49868. Built from https://develop.svn.wordpress.org/trunk@47571 git-svn-id: http://core.svn.wordpress.org/trunk@47346 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/misc.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/misc.php b/wp-admin/includes/misc.php index ba10e55f0e..628ec7bb7b 100644 --- a/wp-admin/includes/misc.php +++ b/wp-admin/includes/misc.php @@ -134,7 +134,7 @@ function insert_with_markers( $filename, $marker, $insertion ) { $instructions = sprintf( /* translators: 1: Marker. */ __( - 'The directives (lines) between `BEGIN %1$s` and `END %1$s` are + 'The directives (lines) between "BEGIN %1$s" and "END %1$s" are dynamically generated, and should only be modified via WordPress filters. Any changes to the directives between these markers will be overwritten.' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 07b2c0ed0a..aeafab78a0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-alpha-47570'; +$wp_version = '5.5-alpha-47571'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.