Changeset 2604

Show
Ignore:
Timestamp:
05/13/05 21:45:51 (3 years ago)
Author:
matt
Message:

http://mosquito.wordpress.org/view.php?id=1347 - Hat tip: Skippy the Salacious

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/post.php

    r2574 r2604  
    194194 
    195195    if ('publish' == $post_status) { 
     196        do_action('publish_post', $post_ID); 
    196197        if ($post_pingback) 
    197198            pingback($content, $post_ID); 
    198199        do_enclose( $content, $post_ID ); 
    199200        do_trackbacks($post_ID); 
    200         do_action('publish_post', $post_ID); 
     201         
    201202    } 
    202203 
     
    430431        do_action('private_to_published', $post_ID); 
    431432 
     433    do_action('edit_post', $post_ID); 
     434 
    432435    if ($post_status == 'publish') { 
    433436        do_action('publish_post', $post_ID); 
     
    446449    } 
    447450 
    448     do_action('edit_post', $post_ID); 
    449451    exit(); 
    450452    break;