Attempt to fix extra default category bug.

git-svn-id: http://svn.automattic.com/wordpress/branches/1.5@2678 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2005-06-30 00:53:44 +00:00
parent ea9c93a64c
commit 6251f851df
1 changed files with 9 additions and 8 deletions

View File

@ -10,7 +10,6 @@ include_once(ABSPATH . WPINC . '/class-IXR.php');
// error_reporting(0);
$post_default_title = ""; // posts submitted via the xmlrpc interface get that title
$post_default_category = 1; // posts submitted via the xmlrpc interface go into that category
$xmlrpc_logging = 0;
@ -563,9 +562,9 @@ class wp_xmlrpc_server extends IXR_Server {
foreach ($catnames as $cat) {
$post_category[] = get_cat_ID($cat);
}
} else {
$post_category[] = $post_default_category;
}
} else if ( !empty($catnames) ) {
$post_category = array(get_cat_ID($catnames));
}
// We've got all the data -- post it:
$postdata = compact('post_author', 'post_date', 'post_date_gmt', 'post_content', 'post_title', 'post_category', 'post_status', 'post_excerpt', 'comment_status', 'ping_status', 'to_ping');
@ -614,14 +613,16 @@ class wp_xmlrpc_server extends IXR_Server {
$post_title = $content_struct['title'];
$post_content = apply_filters( 'content_save_pre', $content_struct['description'] );
$catnames = $content_struct['categories'];
$post_category = array();
if (is_array($catnames)) {
foreach ($catnames as $cat) {
$post_category[] = get_cat_ID($cat);
}
} else {
$post_category[] = $post_default_category;
}
} else if ( !empty($catnames) ) {
$post_category = array(get_cat_ID($catnames));
}
$post_excerpt = $content_struct['mt_excerpt'];
$post_more = $content_struct['mt_text_more'];
@ -830,7 +831,7 @@ class wp_xmlrpc_server extends IXR_Server {
// http://mycvs.org/archives/2004/06/30/file-upload-to-wordpress-in-ecto/
global $wpdb;
$blog_ID = $wpdb->escape($args[0]);
$user_login = $wpdb->escape($args[1]);
$user_pass = $wpdb->escape($args[2]);