Make WordPress Core


Ignore:
Timestamp:
07/12/2007 04:00:51 PM (18 years ago)
Author:
ryan
Message:

Fix variable name. Props bgracewood. fixes #4621

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/default-filters.php

    r5783 r5797  
    185185add_action( 'plugins_loaded', 'wp_maybe_load_widgets', 0 );
    186186add_action( 'shutdown', 'wp_ob_end_flush_all', 1);
     187add_action('publish_post', '_publish_post_hook', 5, 1);
     188add_action('future_post', '_future_post_hook', 5, 2);
     189add_action('future_page', '_future_post_hook', 5, 2);
     190add_action('save_post', '_save_post_hook', 5, 2);
     191add_action('transition_post_status', '_transition_post_status', 5, 3);
    187192
    188193?>
Note: See TracChangeset for help on using the changeset viewer.