Admin Bar: Fix another HTML error introduced in [42128].

Props Otto42.
See #41057.


Built from https://develop.svn.wordpress.org/trunk@42131


git-svn-id: http://core.svn.wordpress.org/trunk@41962 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Gary Pendergast 2017-11-08 23:13:46 +00:00
parent 0a81bcf4ff
commit 39a3fe9180
2 changed files with 2 additions and 2 deletions

View File

@ -506,7 +506,7 @@ class WP_Admin_Bar {
foreach ( $attributes as $attribute ) {
if ( ! empty( $node->meta[ $attribute ] ) ) {
echo " $attribute='" . esc_attr( $node->meta[ $attribute ] ) . '"';
echo " $attribute='" . esc_attr( $node->meta[ $attribute ] ) . "'";
}
}

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.0-alpha-42130';
$wp_version = '5.0-alpha-42131';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.