Changeset 439

Show
Ignore:
Timestamp:
01/19/05 13:26:18 (3 years ago)
Author:
morganiq
Message:

Added 'save_post' hook

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • mini-posts/trunk/mini-posts.php

    r189 r439  
    44Plugin URI: http://doocy.net/mini-posts/ 
    55Description: An approach to "asides", or small posts. Allows you to mark entries as "mini" posts and handle them differently than normal posts. <strong>Requires WordPress 1.5.</strong> 
    6 Version: 0.5 
     6Version: 0.5.1 
    77Author: Morgan Doocy 
    88Author URI: http://doocy.net/ 
     
    39390.5    - Added support for 0-, 1-, and n-comment formatting to get_mini_posts(). 
    4040        (WARNING: The argument sequence of get_mini_posts() has changed to accommodate this.) 
     410.5.1  - Added 'save_post' hook 
    4142 
    4243*/ 
     
    337338       
    338339      add_action('edit_form_advanced', 'mini_posts_checkbox'); 
     340      add_action('simple_edit_form', 'mini_posts_checkbox'); 
     341      add_action('save_post', 'mini_update_post'); 
    339342      add_action('edit_post', 'mini_update_post'); 
    340343      add_action('publish_post', 'mini_update_post');