From 0b3a68dbd151d18c07a25609db29c261af592e44 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 5 Jan 2023 15:25:44 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@55033 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/option.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/option.php b/src/wp-includes/option.php index b902aee87e..d87a2f9626 100644 --- a/src/wp-includes/option.php +++ b/src/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' );