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:
parent
dd9aaba852
commit
c2b62878aa
|
@ -2853,7 +2853,7 @@ function wp_resource_hints() {
|
||||||
$urls = array_unique( $urls );
|
$urls = array_unique( $urls );
|
||||||
|
|
||||||
foreach ( $urls as $url ) {
|
foreach ( $urls as $url ) {
|
||||||
printf( "<link rel='%s' href='%s'>\n", $relation_type, $url );
|
printf( "<link rel='%s' href='%s' />\n", $relation_type, $url );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue