diff --git a/wp-admin/edit-form-blocks.php b/wp-admin/edit-form-blocks.php index 6282f90f78..93dea2eb91 100644 --- a/wp-admin/edit-form-blocks.php +++ b/wp-admin/edit-form-blocks.php @@ -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( diff --git a/wp-includes/version.php b/wp-includes/version.php index b5a053c9ba..50845c22bb 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.