Coding Standards: In wlwmanifest_link()
, use concatenation instead of commas for echo
, for consistency with rsd_link()
and the rest of core.
See #47632. git-svn-id: https://develop.svn.wordpress.org/trunk@45816 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
5a98103567
commit
beb1d3a7b5
@ -2950,8 +2950,7 @@ function rsd_link() {
|
||||
* @since 2.3.1
|
||||
*/
|
||||
function wlwmanifest_link() {
|
||||
echo '<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="',
|
||||
includes_url( 'wlwmanifest.xml' ), '" /> ', "\n";
|
||||
echo '<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="' . includes_url( 'wlwmanifest.xml' ) . '" /> ' . "\n";
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user