Ensure we support custom comment approval statuses over xmlrpc. Fixes #7792 props josephscott.

git-svn-id: https://develop.svn.wordpress.org/trunk@8979 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2008-09-25 19:56:36 +00:00
parent bad13dd1fe
commit 9188cb1553
1 changed files with 3 additions and 1 deletions

View File

@ -988,8 +988,10 @@ class wp_xmlrpc_server extends IXR_Server {
$comment_status = 'hold';
else if ( 'spam' == $comment->comment_approved )
$comment_status = 'spam';
else
else if ( 1 == $comment->comment_approved )
$comment_status = 'approve';
else
$comment_status = $comment->comment_approved;
$link = get_comment_link($comment);