From 0a20850f5746578356a8fa9f2e46dff3b12dac5e Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 2 Dec 2020 16:55:06 +0000 Subject: [PATCH] Docs: Clarify the `$format` parameter description in `comment_time()`. See #51800. Built from https://develop.svn.wordpress.org/trunk@49735 git-svn-id: http://core.svn.wordpress.org/trunk@49458 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/comment-template.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php index aa521e473c..0d2da1f114 100644 --- a/wp-includes/comment-template.php +++ b/wp-includes/comment-template.php @@ -1033,7 +1033,7 @@ function comment_text( $comment_ID = 0, $args = array() ) { * * @since 1.5.0 * - * @param string $format Optional. PHP date format. Defaults to the 'time_format' option. + * @param string $format Optional. PHP time format. Defaults to the 'time_format' option. * @param bool $gmt Optional. Whether to use the GMT date. Default false. * @param bool $translate Optional. Whether to translate the time (for use in feeds). * Default true. @@ -1067,7 +1067,7 @@ function get_comment_time( $format = '', $gmt = false, $translate = true ) { * * @since 0.71 * - * @param string $format Optional. PHP date format. Defaults to the 'time_format' option. + * @param string $format Optional. PHP time format. Defaults to the 'time_format' option. */ function comment_time( $format = '' ) { echo get_comment_time( $format ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 7555681a7e..87baa89e5b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.7-alpha-49731'; +$wp_version = '5.7-alpha-49735'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.