PHPCS: Fix errors introduced in [44833].

git-svn-id: https://develop.svn.wordpress.org/trunk@44858 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2019-03-12 22:55:33 +00:00
parent bb281f9bd3
commit c43e43a7ce
1 changed files with 2 additions and 2 deletions

View File

@ -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 "<a $text rel=\"" . esc_attr( $rel ) . "\">";
return "<a $text rel=\"" . esc_attr( $rel ) . '">';
}
/**