diff --git a/wp-includes/class-wp-block-type.php b/wp-includes/class-wp-block-type.php index 7b5a42bc4e..4758e172ba 100644 --- a/wp-includes/class-wp-block-type.php +++ b/wp-includes/class-wp-block-type.php @@ -276,18 +276,7 @@ class WP_Block_Type { */ public function get_attributes() { return is_array( $this->attributes ) ? - array_merge( - $this->attributes, - array( - 'layout' => array( - 'type' => 'string', - ), - ) - ) : - array( - 'layout' => array( - 'type' => 'string', - ), - ); + $this->attributes : + array(); } } diff --git a/wp-includes/version.php b/wp-includes/version.php index 76a04017aa..5eea44cc8b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-alpha-48117'; +$wp_version = '5.5-alpha-48118'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.