Use instead of hardcoding 1. Do we really need a separate default category for XMLRPC posting?

git-svn-id: http://svn.automattic.com/wordpress/trunk@2649 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2005-06-18 19:21:37 +00:00
parent eb91c8f770
commit d1ea1c932e
1 changed files with 4 additions and 4 deletions

View File

@ -470,7 +470,7 @@ class wp_xmlrpc_server extends IXR_Server {
/* metaweblog.newPost creates a post */
function mw_newPost($args) {
global $wpdb;
global $wpdb, $post_default_category;
$blog_ID = $args[0]; // we will support this in the near future
$user_login = $args[1];
@ -528,7 +528,7 @@ class wp_xmlrpc_server extends IXR_Server {
$post_category[] = get_cat_ID($cat);
}
} else {
$post_category[] = 1;
$post_category[] = $post_default_category;
}
// We've got all the data -- post it:
@ -552,7 +552,7 @@ class wp_xmlrpc_server extends IXR_Server {
/* metaweblog.editPost ...edits a post */
function mw_editPost($args) {
global $wpdb;
global $wpdb, $post_default_category;
$post_ID = $args[0];
$user_login = $args[1];
@ -581,7 +581,7 @@ class wp_xmlrpc_server extends IXR_Server {
$post_category[] = get_cat_ID($cat);
}
} else {
$post_category[] = 1;
$post_category[] = $post_default_category;
}
$post_excerpt = $content_struct['mt_excerpt'];