mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-12 13:44:21 +01:00
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
This commit is contained in:
parent
0292de60ec
commit
c4f8bc468d
@ -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 ) . '">';
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user