git-svn-id: https://develop.svn.wordpress.org/trunk@2604 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2005-05-13 21:45:51 +00:00
parent 4b6aa188cd
commit 202758f35d
1 changed files with 4 additions and 2 deletions

View File

@ -193,11 +193,12 @@ case 'post':
do_action('save_post', $post_ID);
if ('publish' == $post_status) {
do_action('publish_post', $post_ID);
if ($post_pingback)
pingback($content, $post_ID);
do_enclose( $content, $post_ID );
do_trackbacks($post_ID);
do_action('publish_post', $post_ID);
}
if ($post_status == 'static') {
@ -429,6 +430,8 @@ case 'editpost':
if ($prev_status != 'publish' && $post_status == 'publish')
do_action('private_to_published', $post_ID);
do_action('edit_post', $post_ID);
if ($post_status == 'publish') {
do_action('publish_post', $post_ID);
do_trackbacks($post_ID);
@ -445,7 +448,6 @@ case 'editpost':
}
}
do_action('edit_post', $post_ID);
exit();
break;