mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-12 04:40:26 +00:00
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:
@@ -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";
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user