From 40ce8c68fe77a1a5bac7a049d3cc45934c56328a Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Tue, 25 Aug 2015 17:14:28 +0000 Subject: [PATCH] Docs: The type for the `$t_time` parameter in the `post_date_column_time` filter docs should be `string`, not `array`. Props jjeaton Fixes #33540. git-svn-id: https://develop.svn.wordpress.org/trunk@33731 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/class-wp-posts-list-table.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-admin/includes/class-wp-posts-list-table.php b/src/wp-admin/includes/class-wp-posts-list-table.php index 0e55c6372c..8d9abe9dba 100644 --- a/src/wp-admin/includes/class-wp-posts-list-table.php +++ b/src/wp-admin/includes/class-wp-posts-list-table.php @@ -838,13 +838,13 @@ class WP_Posts_List_Table extends WP_List_Table { /** * Filter the published time of the post. * - * If $mode equals 'excerpt', the published time and date are both displayed. - * If $mode equals 'list' (default), the publish date is displayed, with the + * If `$mode` equals 'excerpt', the published time and date are both displayed. + * If `$mode` equals 'list' (default), the publish date is displayed, with the * time and date together available as an abbreviation definition. * * @since 2.5.1 * - * @param array $t_time The published time. + * @param string $t_time The published time. * @param WP_Post $post Post object. * @param string $column_name The column name. * @param string $mode The list display mode ('excerpt' or 'list').