From 2225a352e5b42baa01cf87b523e79ccfb8bc5032 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Tue, 20 Sep 2022 01:40:56 +0000 Subject: [PATCH] Coding Standards: Applying an alignment fix from running `composer format`. Follow up to [54214]. See #56467. git-svn-id: https://develop.svn.wordpress.org/trunk@54238 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/script-loader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/script-loader.php b/src/wp-includes/script-loader.php index 6fff91ffed..1c1d12a367 100644 --- a/src/wp-includes/script-loader.php +++ b/src/wp-includes/script-loader.php @@ -3002,7 +3002,7 @@ function wp_enqueue_stored_styles( $options = array() ) { $compiled_core_stylesheet = ''; $style_tag_id = 'core'; // Adds comment if code is prettified to identify core styles sections in debugging. - $should_prettify = isset( $options['prettify'] ) ? true === $options['prettify'] : defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG; + $should_prettify = isset( $options['prettify'] ) ? true === $options['prettify'] : defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG; foreach ( $core_styles_keys as $style_key ) { if ( $should_prettify ) { $compiled_core_stylesheet .= "/**\n * Core styles: $style_key\n */\n";