Changeset 11783
- Timestamp:
- 08/06/2009 08:48:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/xmlrpc.php
r11773 r11783 1056 1056 $comment_date_gmt = mysql2date("Ymd\TH:i:s", $comment->comment_date_gmt, false); 1057 1057 1058 if ( 0== $comment->comment_approved )1058 if ( '0' == $comment->comment_approved ) 1059 1059 $comment_status = 'hold'; 1060 1060 else if ( 'spam' == $comment->comment_approved ) 1061 1061 $comment_status = 'spam'; 1062 else if ( 1== $comment->comment_approved )1062 else if ( '1' == $comment->comment_approved ) 1063 1063 $comment_status = 'approve'; 1064 1064 else
Note: See TracChangeset
for help on using the changeset viewer.