diff --git wp-includes/comment-template.php wp-includes/comment-template.php
index e6b246c..e3c8faa 100644
--- wp-includes/comment-template.php
+++ wp-includes/comment-template.php
@@ -1034,13 +1034,14 @@ 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 int|WP_Comment $comment_ID WP_Comment or ID of the comment for which to get the date.
  * @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.
  * @return string The formatted time.
  */
-function get_comment_time( $format = '', $gmt = false, $translate = true ) {
-	$comment = get_comment();
+function get_comment_time( $format = '', $comment_ID = 0, $gmt = false, $translate = true ) {
+	$comment = get_comment( $comment_ID );
 
 	$comment_date = $gmt ? $comment->comment_date_gmt : $comment->comment_date;
 
