From 39a3fe91809315b4da2cfa7f4bfbd7912a649f2a Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Wed, 8 Nov 2017 23:13:46 +0000 Subject: [PATCH] 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 --- wp-includes/class-wp-admin-bar.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-admin-bar.php b/wp-includes/class-wp-admin-bar.php index 3568be0789..3603b5be44 100644 --- a/wp-includes/class-wp-admin-bar.php +++ b/wp-includes/class-wp-admin-bar.php @@ -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 ] ) . "'"; } } diff --git a/wp-includes/version.php b/wp-includes/version.php index 24fb1d0dbf..0399c22415 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.