Script Loader: Close the `<link>` tag in `wp_resource_hints()`.

Props Chaos Engine.
Fixes #37800 for trunk.
Built from https://develop.svn.wordpress.org/trunk@38443


git-svn-id: http://core.svn.wordpress.org/trunk@38384 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2016-08-30 11:20:43 +00:00
parent dd9aaba852
commit c2b62878aa
2 changed files with 2 additions and 2 deletions

View File

@ -2853,7 +2853,7 @@ function wp_resource_hints() {
$urls = array_unique( $urls );
foreach ( $urls as $url ) {
printf( "<link rel='%s' href='%s'>\n", $relation_type, $url );
printf( "<link rel='%s' href='%s' />\n", $relation_type, $url );
}
}
}

View File

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