Coding Standards: Correct alignment in `wp_enqueue_global_styles()`.
This fixes an `Equals sign not aligned with surrounding assignments; expected 5 spaces but found 1 space` WPCS warning. Follow-up to [50973], [51819]. See #53359. Built from https://develop.svn.wordpress.org/trunk@51944 git-svn-id: http://core.svn.wordpress.org/trunk@51533 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a225165010
commit
a5926f8ece
|
@ -2310,8 +2310,9 @@ function wp_enqueue_global_styles() {
|
|||
! is_admin()
|
||||
);
|
||||
|
||||
$stylesheet = null;
|
||||
$stylesheet = null;
|
||||
$transient_name = 'global_styles_' . get_stylesheet();
|
||||
|
||||
if ( $can_use_cache ) {
|
||||
$cache = get_transient( $transient_name );
|
||||
if ( $cache ) {
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.9-alpha-51943';
|
||||
$wp_version = '5.9-alpha-51944';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue