diff --git a/wp-admin/includes/class-wp-list-table.php b/wp-admin/includes/class-wp-list-table.php index 17e96898bb..d67b24ce6d 100644 --- a/wp-admin/includes/class-wp-list-table.php +++ b/wp-admin/includes/class-wp-list-table.php @@ -1260,7 +1260,7 @@ 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 output. In this case, an empty string. + * @return string The row actions HTML, or an empty string if the current column is 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 8d942b4c9e..fafa6cae16 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-33667'; +$wp_version = '4.4-alpha-33668'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.