diff --git a/wp-admin/includes/meta-boxes.php b/wp-admin/includes/meta-boxes.php index 8429b57935..ed477273ab 100644 --- a/wp-admin/includes/meta-boxes.php +++ b/wp-admin/includes/meta-boxes.php @@ -51,6 +51,16 @@ if ( 'publish' == $post->post_status ) { +
@@ -207,8 +217,11 @@ if ( $can_publish ) : // Contributors don't get to choose the date of publish ?> * Fires after the post time/date setting in the Publish meta box. * * @since 2.9.0 + * @since 4.4.0 Added the `$post` parameter. + * + * @param WP_Post $post WP_Post object for the current post. */ -do_action( 'post_submitbox_misc_actions' ); +do_action( 'post_submitbox_misc_actions', $post ); ?>
diff --git a/wp-includes/version.php b/wp-includes/version.php index 7c2f955703..0d22e886bb 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34894'; +$wp_version = '4.4-alpha-34895'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.