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:
Andrea Fercia 2023-09-25 10:02:22 +00:00
parent 9fd898a7c7
commit 97b85f2823
2 changed files with 2 additions and 2 deletions

View File

@ -351,7 +351,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
* @param WP_Post $post The post being edited.
* @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(
$message,
array(

View File

@ -16,7 +16,7 @@
*
* @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.