From 06d264d032ab7ba73eb8ea82449fe72d5b1a59eb Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 16 Aug 2019 00:21:56 +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. Built from https://develop.svn.wordpress.org/trunk@45816 git-svn-id: http://core.svn.wordpress.org/trunk@45627 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/general-template.php | 3 +-- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index 96172b6675..66d6551091 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -2950,8 +2950,7 @@ function rsd_link() { * @since 2.3.1 */ function wlwmanifest_link() { - echo ' ', "\n"; + echo ' ' . "\n"; } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 73bb03cfb4..3016fb52e2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45815'; +$wp_version = '5.3-alpha-45816'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.