From 17b2ce43f32411476b5e44772d74ea5dc298b9e6 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 12 Mar 2019 22:57:49 +0000 Subject: [PATCH] PHPCS: Fix errors introduced in [44833]. Merges [44858] to the 5.1 branch. Built from https://develop.svn.wordpress.org/branches/5.1@44859 git-svn-id: http://core.svn.wordpress.org/branches/5.1@44691 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/formatting.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index c29c025136..835862c77f 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -3022,11 +3022,11 @@ function wp_rel_nofollow_callback( $matches ) { $html = ''; foreach ( $atts as $name => $value ) { - $html .= "{$name}=\"" . esc_attr( $value ) . "\" "; + $html .= "{$name}=\"" . esc_attr( $value ) . '" '; } $text = trim( $html ); } - return ""; + return "'; } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 495f9bb2b9..9966308cf8 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.1.1-RC1-44843'; +$wp_version = '5.1.1-RC1-44859'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.