From 94eb7224bbba6df2298f12c12d539bed3c3b6b54 Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 9 May 2008 16:02:44 +0000 Subject: [PATCH] Use wp_count_comments() in wp.getCommentCount. Props josephscott. fixes #6941 git-svn-id: http://svn.automattic.com/wordpress/trunk@7914 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- xmlrpc.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/xmlrpc.php b/xmlrpc.php index 7a0fb48f9..daaf3ab2f 100644 --- a/xmlrpc.php +++ b/xmlrpc.php @@ -698,7 +698,13 @@ class wp_xmlrpc_server extends IXR_Server { do_action('xmlrpc_call', 'wp.getCommentCount'); - return get_comment_count( $post_id ); + $count = wp_count_comments( $post_id ); + return array( + "approved" => $count->approved, + "awaiting_moderation" => $count->moderated, + "spam" => $count->spam, + "total_comments" => $count->total_comments + ); }