Changeset 2780 for branches/1.5/xmlrpc.php
- Timestamp:
- 08/14/2005 06:06:02 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.5/xmlrpc.php
r2778 r2780 577 577 578 578 // FIXME: do we pingback always? pingback($content, $post_ID); 579 trackback_url_list($content_struct['mt_tb_ping_urls'],$post_ID); 579 // trackback_url_list($content_struct['mt_tb_ping_urls'],$post_ID); 580 581 if ('publish' == $post_status) { 582 if ($post_pingback) pingback($content, $post_ID); 583 do_enclose( $content, $post_ID ); 584 do_trackbacks($post_ID); 585 do_action('publish_post', $post_ID); 586 } 580 587 581 588 return strval($post_ID); … … 661 668 662 669 // FIXME: do we pingback always? pingback($content, $post_ID); 663 trackback_url_list($content_struct['mt_tb_ping_urls'], $post_ID); 670 // trackback_url_list($content_struct['mt_tb_ping_urls'], $post_ID); 671 if ('publish' == $post_status) { 672 if ($post_pingback) pingback($content, $post_ID); 673 do_enclose( $content, $post_ID ); 674 do_trackbacks($post_ID); 675 do_action('publish_post', $post_ID); 676 } 677 do_action('edit_post', $post_ID); 664 678 665 679 return true;
Note: See TracChangeset
for help on using the changeset viewer.