From d469aa816256ab88e6012c49400d6f40b8acd581 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 11 Jan 2020 17:57:03 +0000 Subject: [PATCH] Docs: Correct `@return` description for `WP_List_Table::handle_row_actions()`. Props pbiron. Fixes #49170. Built from https://develop.svn.wordpress.org/trunk@47058 git-svn-id: http://core.svn.wordpress.org/trunk@46858 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-list-table.php | 3 ++- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/class-wp-list-table.php b/wp-admin/includes/class-wp-list-table.php index 7ddef7fc03..1f078edb42 100644 --- a/wp-admin/includes/class-wp-list-table.php +++ b/wp-admin/includes/class-wp-list-table.php @@ -1373,7 +1373,8 @@ class WP_List_Table { * @param object $item The item being acted upon. * @param string $column_name Current column name. * @param string $primary Primary column name. - * @return string The row actions HTML, or an empty string if the current column is the primary column. + * @return string The row actions HTML, or an empty string + * if the current column is not the primary column. */ protected function handle_row_actions( $item, $column_name, $primary ) { return $column_name === $primary ? '' : ''; diff --git a/wp-includes/version.php b/wp-includes/version.php index 27c1775a9b..075e90d0c3 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-47057'; +$wp_version = '5.4-alpha-47058'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.