mirror of
git://develop.git.wordpress.org/
synced 2025-01-19 13:47:02 +01:00
Use instead of hardcoding 1. Do we really need a separate default category for XMLRPC posting?
git-svn-id: https://develop.svn.wordpress.org/trunk@2649 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
f2d1f8460f
commit
6c6763cd3e
@ -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'];
|
||||
|
Loading…
x
Reference in New Issue
Block a user