From 36ae8339629ea3d5023ccf00ed74bfcec8ffad4f Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Tue, 18 Mar 2025 20:09:25 +0000 Subject: [PATCH] Coding Standards: Correct alignment in parameters passed to wp_editor. Follow-up to [59188]. See #29838, #62279. Built from https://develop.svn.wordpress.org/trunk@60043 git-svn-id: http://core.svn.wordpress.org/trunk@59379 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/edit-form-advanced.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-admin/edit-form-advanced.php b/wp-admin/edit-form-advanced.php index f9ade65458..0380a48a9c 100644 --- a/wp-admin/edit-form-advanced.php +++ b/wp-admin/edit-form-advanced.php @@ -623,9 +623,9 @@ if ( post_type_supports( $post_type, 'editor' ) ) { 'drag_drop_upload' => true, 'editor_height' => 300, 'tinymce' => array( - 'resize' => false, - 'wp_autoresize_on' => $_wp_editor_expand, - 'add_unload_trigger' => false, + 'resize' => false, + 'wp_autoresize_on' => $_wp_editor_expand, + 'add_unload_trigger' => false, ), ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 6fba37856f..6cc9e1f6f7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.8-beta3-60042'; +$wp_version = '6.8-beta3-60043'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.