From 6a88c91d3a2b33ed45eca9e2da33429e0f76b2a9 Mon Sep 17 00:00:00 2001 From: youknowriad Date: Thu, 16 Jul 2020 14:13:03 +0000 Subject: [PATCH] Block Editor: Remove the gutenberg domain name from the block-patterns.php file Props SergeyBiryukov. Fixes #50669. Built from https://develop.svn.wordpress.org/trunk@48494 git-svn-id: http://core.svn.wordpress.org/trunk@48256 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/block-patterns.php | 10 +++++----- wp-includes/version.php | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/wp-includes/block-patterns.php b/wp-includes/block-patterns.php index 742db0fc4f..6efc56fee7 100644 --- a/wp-includes/block-patterns.php +++ b/wp-includes/block-patterns.php @@ -38,11 +38,11 @@ function _register_core_block_patterns_and_categories() { } } - register_block_pattern_category( 'buttons', array( 'label' => _x( 'Buttons', 'Block pattern category', 'gutenberg' ) ) ); - register_block_pattern_category( 'columns', array( 'label' => _x( 'Columns', 'Block pattern category', 'gutenberg' ) ) ); - register_block_pattern_category( 'gallery', array( 'label' => _x( 'Gallery', 'Block pattern category', 'gutenberg' ) ) ); - register_block_pattern_category( 'header', array( 'label' => _x( 'Headers', 'Block pattern category', 'gutenberg' ) ) ); - register_block_pattern_category( 'text', array( 'label' => _x( 'Text', 'Block pattern category', 'gutenberg' ) ) ); + register_block_pattern_category( 'buttons', array( 'label' => _x( 'Buttons', 'Block pattern category' ) ) ); + register_block_pattern_category( 'columns', array( 'label' => _x( 'Columns', 'Block pattern category' ) ) ); + register_block_pattern_category( 'gallery', array( 'label' => _x( 'Gallery', 'Block pattern category' ) ) ); + register_block_pattern_category( 'header', array( 'label' => _x( 'Headers', 'Block pattern category' ) ) ); + register_block_pattern_category( 'text', array( 'label' => _x( 'Text', 'Block pattern category' ) ) ); } add_action( 'init', '_register_core_block_patterns_and_categories' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 423cb7f266..4510fd1090 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-beta2-48493'; +$wp_version = '5.5-beta2-48494'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.