Argh. Missed another s/default/standard/ in [16679]. Any others? see #15582.

git-svn-id: http://svn.automattic.com/wordpress/trunk@16683 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2010-12-02 04:38:42 +00:00
parent e98e5b094b
commit b608e8ca3e
1 changed files with 2 additions and 2 deletions

View File

@ -2675,7 +2675,7 @@ class wp_xmlrpc_server extends IXR_Server {
// Get post format
$post_format = get_post_format( $post_ID );
if ( empty( $post_format ) )
$post_format = 'default';
$post_format = 'standard';
$sticky = false;
if ( is_sticky( $post_ID ) )
@ -2802,7 +2802,7 @@ class wp_xmlrpc_server extends IXR_Server {
// Get post format
$post_format = get_post_format( $entry['ID'] );
if ( empty( $post_format ) )
$post_format = 'default';
$post_format = 'standard';
$struct[] = array(
'dateCreated' => new IXR_Date($post_date),