Editor: Remove unused param in `get_default_block_editor_settings`
Follow-up for [50776]. Props nosolosw. See #52920. Built from https://develop.svn.wordpress.org/trunk@50963 git-svn-id: http://core.svn.wordpress.org/trunk@50572 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
75f4e848f5
commit
a380cdd21a
|
@ -235,7 +235,7 @@ function get_default_block_editor_settings() {
|
|||
*/
|
||||
function get_block_editor_settings( $editor_name, $custom_settings = array() ) {
|
||||
$editor_settings = array_merge(
|
||||
get_default_block_editor_settings( $editor_name ),
|
||||
get_default_block_editor_settings(),
|
||||
array(
|
||||
'allowedBlockTypes' => get_allowed_block_types( $editor_name ),
|
||||
'blockCategories' => get_block_categories( $editor_name ),
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.8-alpha-50962';
|
||||
$wp_version = '5.8-alpha-50963';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue