From c4f8bc468db56baa2a3bf917c99cdfd17c3391ce Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 12 Mar 2019 22:56:49 +0000 Subject: [PATCH] PHPCS: Fix errors introduced in [44833]. Built from https://develop.svn.wordpress.org/trunk@44858 git-svn-id: http://core.svn.wordpress.org/trunk@44690 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 ff6b8dfced..8b153f36af 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.2-alpha-44842'; +$wp_version = '5.2-alpha-44858'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.