Make WordPress Core


Ignore:
Timestamp:
11/15/2021 12:47:22 PM (5 years ago)
Author:
noisysocks
Message:

Update @wordpress packages

Update packages to include these bug fixes from Gutenberg:

  • Navigation: Fix click-button size, submenu directions, scrollbars.
  • Group - Fix overzealous regex when restoring inner containers
  • Babel Preset: Update Babel packages to 7.16 version
  • theme.json: adds a setting property that enables some other ones
  • Polish metabox container.
  • Fix submenu justification and spacer orientation.
  • Fix Gutenberg 11.8.2 in WordPress trunk
  • Strip meta tags from pasted links in Chromium
  • Hide visilibility and status for navigation posts
  • Navigation: Refactor and simplify setup state.
  • Nav block menu switcher - decode HTML entities and utilise accessible markup pattern
  • Rename fse_navigation_area to wp_navigation_area
  • theme.json: adds a setting property that enables some other ones
  • Revert "theme.json: adds a setting property that enables some other ones"
  • Skip flaky image block test
  • WordPress/gutenberg@3c935c4
  • React to any errors coming up in gutenberg_migrate_menu_to_navigation_post
  • Return wp error from wp_insert_post
  • Fix not transforming logical assignments for packages

See #54337.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-block-navigation-areas-controller.php

    r52133 r52161  
    178178                $name = $request['area'];
    179179
    180                 $mapping          = get_option( 'fse_navigation_areas', array() );
     180                $mapping          = get_option( 'wp_navigation_areas', array() );
    181181                $mapping[ $name ] = $request['navigation'];
    182                 update_option( 'fse_navigation_areas', $mapping );
     182                update_option( 'wp_navigation_areas', $mapping );
    183183
    184184                $area = $this->get_navigation_area_object( $name );
     
    197197        protected function get_navigation_area_object( $name ) {
    198198                $available_areas   = get_navigation_areas();
    199                 $mapping           = get_option( 'fse_navigation_areas', array() );
     199                $mapping           = get_option( 'wp_navigation_areas', array() );
    200200                $area              = new stdClass();
    201201                $area->name        = $name;
Note: See TracChangeset for help on using the changeset viewer.