Make WordPress Core


Ignore:
Timestamp:
04/17/2022 03:05:10 PM (3 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Correct alignment in various files.

This fixes an Array double arrow not aligned correctly WPCS warning.

Follow-up to [53075], [53084], [53091], [53094], [53155], [53129].

See #54728.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/site-editor.php

    r53155 r53197  
    6262$block_editor_context = new WP_Block_Editor_Context( array( 'name' => 'core/edit-site' ) );
    6363$custom_settings      = array(
    64     'siteUrl'                              => site_url(),
    65     'postsPerPage'                         => get_option( 'posts_per_page' ),
    66     'styles'                               => get_block_editor_theme_styles(),
    67     'defaultTemplateTypes'                 => $indexed_template_types,
    68     'defaultTemplatePartAreas'             => get_allowed_block_template_part_areas(),
    69     '__unstableHomeTemplate'               => $home_template,
     64    'siteUrl'                  => site_url(),
     65    'postsPerPage'             => get_option( 'posts_per_page' ),
     66    'styles'                   => get_block_editor_theme_styles(),
     67    'defaultTemplateTypes'     => $indexed_template_types,
     68    'defaultTemplatePartAreas' => get_allowed_block_template_part_areas(),
     69    '__unstableHomeTemplate'   => $home_template,
    7070);
    7171$editor_settings      = get_block_editor_settings( $custom_settings, $block_editor_context );
Note: See TracChangeset for help on using the changeset viewer.