Changeset 2604
- Timestamp:
- 05/13/05 21:45:51 (3 years ago)
- Files:
-
- trunk/wp-admin/post.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-admin/post.php
r2574 r2604 194 194 195 195 if ('publish' == $post_status) { 196 do_action('publish_post', $post_ID); 196 197 if ($post_pingback) 197 198 pingback($content, $post_ID); 198 199 do_enclose( $content, $post_ID ); 199 200 do_trackbacks($post_ID); 200 do_action('publish_post', $post_ID);201 201 202 } 202 203 … … 430 431 do_action('private_to_published', $post_ID); 431 432 433 do_action('edit_post', $post_ID); 434 432 435 if ($post_status == 'publish') { 433 436 do_action('publish_post', $post_ID); … … 446 449 } 447 450 448 do_action('edit_post', $post_ID);449 451 exit(); 450 452 break;
