Make WordPress Core


Ignore:
Timestamp:
02/17/2022 07:40:17 PM (3 years ago)
Author:
audrasjb
Message:

Editor: Update block editor packages for WordPress 5.9.1.

The following packages were updated:

  • @wordpress/block-directory@3.0.27
  • @wordpress/block-editor@8.0.17
  • @wordpress/block-library@6.0.26
  • @wordpress/components@19.2.3
  • @wordpress/core-data@4.0.10
  • @wordpress/customize-widgets@2.0.27
  • @wordpress/e2e-tests@2.5.18
  • @wordpress/edit-post@5.0.27
  • @wordpress/edit-site@3.0.27
  • @wordpress/edit-widgets@3.1.22
  • @wordpress/editor@12.0.21
  • @wordpress/format-library@3.0.23
  • @wordpress/interface@4.1.18
  • @wordpress/list-reusable-blocks@3.0.20
  • @wordpress/nux@5.0.20
  • @wordpress/reusable-blocks@3.0.23
  • @wordpress/server-side-render@3.0.20
  • @wordpress/widgets@2.0.23

Props Mamaduka.
Merges [52765] to the 5.9 branch.
See #55179.

Location:
branches/5.9
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.9

  • branches/5.9/src/wp-includes/blocks/site-logo.php

    r52434 r52766  
    1515function render_block_core_site_logo( $attributes ) {
    1616    $adjust_width_height_filter = function ( $image ) use ( $attributes ) {
    17         if ( empty( $attributes['width'] ) || empty( $image ) ) {
     17        if ( empty( $attributes['width'] ) || empty( $image ) || ! $image[1] || ! $image[2] ) {
    1818            return $image;
    1919        }
Note: See TracChangeset for help on using the changeset viewer.