From beb1d3a7b52e31273721b2502181e82860e6a0fd Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 16 Aug 2019 00:20:58 +0000 Subject: [PATCH] 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 --- src/wp-includes/general-template.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/wp-includes/general-template.php b/src/wp-includes/general-template.php index 96172b6675..66d6551091 100644 --- a/src/wp-includes/general-template.php +++ b/src/wp-includes/general-template.php @@ -2950,8 +2950,7 @@ function rsd_link() { * @since 2.3.1 */ function wlwmanifest_link() { - echo ' ', "\n"; + echo ' ' . "\n"; } /**