From c5fe7878ec2cb9ab6d62e582b1e85d3cd7e61a0d Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 14 Sep 2019 20:42:56 +0000 Subject: [PATCH] Coding Standards: Fix WPCS issue in [46115]. See #43542. Built from https://develop.svn.wordpress.org/trunk@46116 git-svn-id: http://core.svn.wordpress.org/trunk@45928 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/pluggable.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index 835a0d6df3..926f3e41b1 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -454,7 +454,7 @@ if ( ! function_exists( 'wp_mail' ) ) : if ( ! empty( $headers ) ) { foreach ( (array) $headers as $name => $content ) { // Only add custom headers not added automatically by PHPMailer. - if ( ! in_array( $name, array( 'MIME-Version', 'X-Mailer') ) ) { + if ( ! in_array( $name, array( 'MIME-Version', 'X-Mailer' ) ) ) { $phpmailer->addCustomHeader( sprintf( '%1$s: %2$s', $name, $content ) ); } } diff --git a/wp-includes/version.php b/wp-includes/version.php index a000f98723..b402db20c9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-46115'; +$wp_version = '5.3-alpha-46116'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.