From ee23869c682205507a085c9ef9d2d660dac672eb Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 31 Jul 2019 15:10:58 +0000 Subject: [PATCH] Docs: Correct parameter documentation for `bulk_edit_custom_box` and `quick_edit_custom_box` actions. Props abrain. Fixes #47810. Built from https://develop.svn.wordpress.org/trunk@45704 git-svn-id: http://core.svn.wordpress.org/trunk@45515 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-posts-list-table.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-admin/includes/class-wp-posts-list-table.php b/wp-admin/includes/class-wp-posts-list-table.php index 9be84ae2e5..65b52956c7 100644 --- a/wp-admin/includes/class-wp-posts-list-table.php +++ b/wp-admin/includes/class-wp-posts-list-table.php @@ -1864,8 +1864,8 @@ class WP_Posts_List_Table extends WP_List_Table { * * @since 2.7.0 * - * @param string $column_name Name of the column to edit. - * @param WP_Post $post_type The post type slug. + * @param string $column_name Name of the column to edit. + * @param string $post_type The post type slug. */ do_action( 'bulk_edit_custom_box', $column_name, $screen->post_type ); } else { @@ -1877,7 +1877,7 @@ class WP_Posts_List_Table extends WP_List_Table { * * @param string $column_name Name of the column to edit. * @param string $post_type The post type slug, or current screen name if this is a taxonomy list table. - * @param string taxonomy The taxonomy name, if any. + * @param string $taxonomy The taxonomy name, if any. */ do_action( 'quick_edit_custom_box', $column_name, $screen->post_type, '' ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 94aeb37894..1016d6050c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45703'; +$wp_version = '5.3-alpha-45704'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.