From e5b8662000b53dfdf734bef83eb2b02facfabb16 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 5 Jan 2023 15:27:16 +0000 Subject: [PATCH] Coding Standards: Correct alignment in `wp-includes/option.php`. This fixes an `Equals sign not aligned with surrounding statements` WPCS warning, so that the output of `composer format` is clean. Follow-up to [54948]. See #56791. Built from https://develop.svn.wordpress.org/trunk@55033 git-svn-id: http://core.svn.wordpress.org/trunk@54566 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/option.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/option.php b/wp-includes/option.php index b902aee87e..d87a2f9626 100644 --- a/wp-includes/option.php +++ b/wp-includes/option.php @@ -1467,7 +1467,7 @@ function get_network_option( $network_id, $option, $default_value = false ) { if ( ! is_multisite() ) { /** This filter is documented in wp-includes/option.php */ $default_value = apply_filters( 'default_site_option_' . $option, $default_value, $option, $network_id ); - $value = get_option( $option, $default_value ); + $value = get_option( $option, $default_value ); } else { $cache_key = "$network_id:$option"; $value = wp_cache_get( $cache_key, 'site-options' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index cffe1f7077..70890d58e7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-alpha-55032'; +$wp_version = '6.2-alpha-55033'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.