diff -r 5053267dfa3d wptrunk/xmlrpc.php
a
|
b
|
|
2092 | 2092 | } |
2093 | 2093 | |
2094 | 2094 | $post_title = $content_struct['title']; |
2095 | | $post_content = apply_filters( 'content_save_pre', $content_struct['description'] ); |
| 2095 | $post_content = $content_struct['description']; |
2096 | 2096 | |
2097 | 2097 | $post_status = $publish ? 'publish' : 'draft'; |
2098 | 2098 | |
… |
… |
|
2459 | 2459 | } |
2460 | 2460 | |
2461 | 2461 | $post_title = $content_struct['title']; |
2462 | | $post_content = apply_filters( 'content_save_pre', $content_struct['description'] ); |
| 2462 | $post_content = $content_struct['description']; |
2463 | 2463 | $catnames = $content_struct['categories']; |
2464 | 2464 | |
2465 | 2465 | $post_category = array(); |