Changeset 2059 for trunk/xmlrpc.php
- Timestamp:
- 01/06/2005 10:51:44 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/xmlrpc.php
r2058 r2059 358 358 359 359 $content = xmlrpc_removepostdata($content); 360 $post_content = format_to_post($content);360 $post_content = apply_filters( 'content_save_pre', $content ); 361 361 362 362 $post_date = current_time('mysql'); … … 412 412 413 413 $content = xmlrpc_removepostdata($content); 414 $post_content = format_to_post($content);414 $post_content = apply_filters( 'content_save_pre', $content ); 415 415 416 416 $postdata = compact('ID', 'post_content', 'post_title', 'post_category', 'post_status', 'post_excerpt'); … … 490 490 491 491 $post_title = $content_struct['title']; 492 $post_content = format_to_post($content_struct['description']);492 $post_content = apply_filters( 'content_save_pre', $content_struct['description'] ); 493 493 $post_status = $publish ? 'publish' : 'draft'; 494 494 … … 573 573 574 574 $post_title = $content_struct['title']; 575 $post_content = format_to_post($content_struct['description']);575 $post_content = apply_filters( 'content_save_pre', $content_struct['description'] ); 576 576 $catnames = $content_struct['categories']; 577 577
Note: See TracChangeset
for help on using the changeset viewer.