From ee16ed9e0b442021618dbe2038bbfd4d79f26fa9 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 15 Feb 2013 18:49:07 +0000 Subject: [PATCH] Correct return value for comment_exists(). fixes #20494. git-svn-id: https://develop.svn.wordpress.org/trunk@23433 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/comment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/comment.php b/wp-admin/includes/comment.php index 72a0b40e3b..311f669b54 100644 --- a/wp-admin/includes/comment.php +++ b/wp-admin/includes/comment.php @@ -14,7 +14,7 @@ * * @param string $comment_author Author of the comment * @param string $comment_date Date of the comment - * @return mixed Comment ID on success. + * @return mixed Comment post ID on success. */ function comment_exists($comment_author, $comment_date) { global $wpdb;