From ef77993bdc6407ca9713018ac56b2f66bc9ed997 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 13 Feb 2008 17:54:08 +0000 Subject: [PATCH] metaWeblog.newPost fix. Props malex. fixes #5814 for 2.5 git-svn-id: https://develop.svn.wordpress.org/trunk@6815 602fd350-edb4-49c9-b593-d223f7449a82 --- xmlrpc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xmlrpc.php b/xmlrpc.php index 4fdbb06ae3..ec103262ae 100644 --- a/xmlrpc.php +++ b/xmlrpc.php @@ -1141,7 +1141,7 @@ class wp_xmlrpc_server extends IXR_Server { $error_message = __( 'Sorry, you are not allowed to publish pages on this blog.' ); $post_type = 'page'; } - elseif( $content_type['post_type'] == 'post' ) { + elseif( $content_struct['post_type'] == 'post' ) { // This is the default, no changes needed } else { @@ -1390,7 +1390,7 @@ class wp_xmlrpc_server extends IXR_Server { $error_message = __( 'Sorry, you are not allowed to publish pages on this blog.' ); $post_type = 'page'; } - elseif( $content_type['post_type'] == 'post' ) { + elseif( $content_struct['post_type'] == 'post' ) { // This is the default, no changes needed } else {