Changeset 2957 for trunk/xmlrpc.php
- Timestamp:
- 10/20/2005 04:38:07 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/xmlrpc.php
r2846 r2957 380 380 $post_title = xmlrpc_getposttitle($content); 381 381 $post_category = xmlrpc_getpostcategory($content); 382 383 $content = xmlrpc_removepostdata($content); 384 $post_content = apply_filters( 'content_save_pre', $content ); 382 $post_content = xmlrpc_removepostdata($content); 385 383 386 384 $post_date = current_time('mysql'); … … 411 409 $user_login = $args[2]; 412 410 $user_pass = $args[3]; 413 $ new_content= $args[4];411 $content = $args[4]; 414 412 $publish = $args[5]; 415 413 … … 432 430 extract($actual_post); 433 431 434 $content = $newcontent;435 436 432 $post_title = xmlrpc_getposttitle($content); 437 433 $post_category = xmlrpc_getpostcategory($content); 438 439 $content = xmlrpc_removepostdata($content); 440 $post_content = apply_filters( 'content_save_pre', $content ); 434 $post_content = xmlrpc_removepostdata($content); 441 435 442 436 $postdata = compact('ID', 'post_content', 'post_title', 'post_category', 'post_status', 'post_excerpt');
Note: See TracChangeset
for help on using the changeset viewer.