From d1ea1c932e1ad094de6860801f63d75c72bde1b7 Mon Sep 17 00:00:00 2001 From: ryan Date: Sat, 18 Jun 2005 19:21:37 +0000 Subject: [PATCH] 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 --- xmlrpc.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xmlrpc.php b/xmlrpc.php index 47544f639..5f48532d9 100644 --- a/xmlrpc.php +++ b/xmlrpc.php @@ -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'];