From 97b85f2823ca532ee8637a2dee36e91fc6fd6309 Mon Sep 17 00:00:00 2001 From: Andrea Fercia Date: Mon, 25 Sep 2023 10:02:22 +0000 Subject: [PATCH] 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 --- wp-admin/edit-form-blocks.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.