Editor: Add missing parameter to the `block_editor_no_javascript_message` filter after [56672].
Props mukesh27. Fixes #59229. Built from https://develop.svn.wordpress.org/trunk@56675 git-svn-id: http://core.svn.wordpress.org/trunk@56187 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9fd898a7c7
commit
97b85f2823
|
@ -351,7 +351,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||||
* @param WP_Post $post The post being edited.
|
* @param WP_Post $post The post being edited.
|
||||||
* @param bool $installed Whether the classic editor is installed.
|
* @param bool $installed Whether the classic editor is installed.
|
||||||
*/
|
*/
|
||||||
$message = apply_filters( 'block_editor_no_javascript_message', $message, $post );
|
$message = apply_filters( 'block_editor_no_javascript_message', $message, $post, $installed );
|
||||||
wp_admin_notice(
|
wp_admin_notice(
|
||||||
$message,
|
$message,
|
||||||
array(
|
array(
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.4-alpha-56674';
|
$wp_version = '6.4-alpha-56675';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue