From bf41a5dc23e16f9e4a1707847da5cd40ec6a942b Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 30 Aug 2016 11:19:13 +0000 Subject: [PATCH] Script Loader: Close the `` tag in `wp_resource_hints()`. Props Chaos Engine. Fixes #37800 for trunk. git-svn-id: https://develop.svn.wordpress.org/trunk@38443 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/general-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/general-template.php b/src/wp-includes/general-template.php index 3bd18bb1d5..2161efac97 100644 --- a/src/wp-includes/general-template.php +++ b/src/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 ); } } }