From 03d74022bec03a43eea52d8f8ef87bf63e454b7c Mon Sep 17 00:00:00 2001 From: desrosj Date: Wed, 1 Sep 2021 00:11:57 +0000 Subject: [PATCH] Coding Standards: Apply some minor alignment fixes. These are updates caused by running `composer format`. Follow up to [51653]. Partially merges [51693] to the 5.8 branch. See #53668. Built from https://develop.svn.wordpress.org/branches/5.8@51707 git-svn-id: http://core.svn.wordpress.org/branches/5.8@51313 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 1ef8b3d907..a6b81dc5da 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -2625,7 +2625,7 @@ function wp_unique_filename( $dir, $filename, $unique_filename_callback = null ) $alt_mime_type = $output_formats[ $mime_type ]; // Other types of images whose names may conflict if their sub-sizes are regenerated. - $alt_types = array_keys( array_intersect( $output_formats, array( $mime_type, $alt_mime_type ) ) ); + $alt_types = array_keys( array_intersect( $output_formats, array( $mime_type, $alt_mime_type ) ) ); $alt_types[] = $alt_mime_type; } elseif ( ! empty( $output_formats ) ) { $alt_types = array_keys( array_intersect( $output_formats, array( $mime_type ) ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 1c1542a07c..d4cd80b00d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8.1-alpha-51706'; +$wp_version = '5.8.1-alpha-51707'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.