From c43e43a7ce630a6f3447fd402e86c162128694e3 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 12 Mar 2019 22:55:33 +0000 Subject: [PATCH] PHPCS: Fix errors introduced in [44833]. git-svn-id: https://develop.svn.wordpress.org/trunk@44858 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/formatting.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/formatting.php b/src/wp-includes/formatting.php index 6b44820dad..1913dbedff 100644 --- a/src/wp-includes/formatting.php +++ b/src/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 "'; } /**