Changeset 2649 for trunk/xmlrpc.php
- Timestamp:
- 06/18/2005 07:21:37 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/xmlrpc.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/xmlrpc.php
r2636 r2649 471 471 function mw_newPost($args) { 472 472 473 global $wpdb ;473 global $wpdb, $post_default_category; 474 474 475 475 $blog_ID = $args[0]; // we will support this in the near future … … 529 529 } 530 530 } else { 531 $post_category[] = 1;531 $post_category[] = $post_default_category; 532 532 } 533 533 … … 553 553 function mw_editPost($args) { 554 554 555 global $wpdb ;555 global $wpdb, $post_default_category; 556 556 557 557 $post_ID = $args[0]; … … 582 582 } 583 583 } else { 584 $post_category[] = 1;584 $post_category[] = $post_default_category; 585 585 } 586 586
Note: See TracChangeset
for help on using the changeset viewer.