From 5977a7e35539b1f4ce158a91a0715ca8b5683177 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sun, 30 Nov 2014 09:51:23 +0000 Subject: [PATCH] Add an entry to the changelog for the `wp_editor_expand` hook denoting that the `$post_type` parameter was added in 4.1.0. See #30458. Built from https://develop.svn.wordpress.org/trunk@30643 git-svn-id: http://core.svn.wordpress.org/trunk@30633 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/edit-form-advanced.php | 3 ++- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-admin/edit-form-advanced.php b/wp-admin/edit-form-advanced.php index f01f1f0a90..52edd1e688 100644 --- a/wp-admin/edit-form-advanced.php +++ b/wp-admin/edit-form-advanced.php @@ -17,8 +17,9 @@ $_wp_editor_expand = $_content_editor_dfw = false; * Filter whether to enable the 'expand' functionality in the post editor. * * @since 4.0.0 + * @since 4.1.0 Added the `$post_type` parameter. * - * @param bool $expand Whether to enable the 'expand' functionality. Default true. + * @param bool $expand Whether to enable the 'expand' functionality. Default true. * @param string $post_type Post type. */ if ( post_type_supports( $post_type, 'editor' ) && ! wp_is_mobile() && diff --git a/wp-includes/version.php b/wp-includes/version.php index 8a5fd936f0..2547c7c11e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-beta2-30642'; +$wp_version = '4.1-beta2-30643'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.