From d6980d1c0d405231cec379162415696d0886af14 Mon Sep 17 00:00:00 2001 From: Jeremy Felt Date: Wed, 31 Aug 2016 17:26:31 +0000 Subject: [PATCH] Script Loader: Close the `` tag in `wp_resource_hints()`. Adjusts tests to match markup change. Merge of [38443] and [38447] to the 4.6 branch. Props Chaos Engine, SergeyBiryukov, swissspidy. Fixes #37800. Built from https://develop.svn.wordpress.org/branches/4.6@38473 git-svn-id: http://core.svn.wordpress.org/branches/4.6@38414 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/general-template.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index 12ffd4a91e..a5d5ea7dba 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -2853,7 +2853,7 @@ function wp_resource_hints() { $urls = array_unique( $urls ); foreach ( $urls as $url ) { - printf( "\n", $relation_type, $url ); + printf( "\n", $relation_type, $url ); } } } diff --git a/wp-includes/version.php b/wp-includes/version.php index dcb9059ccd..5e1251259c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6.1-alpha-38472'; +$wp_version = '4.6.1-alpha-38473'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.