Make WordPress Core


Ignore:
Timestamp:
12/04/2006 12:48:03 AM (19 years ago)
Author:
ryan
Message:

Hooks needed to allow alternate category admin inteface. Props alexkingorg. fixes #3408

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-category-form.php

    r4583 r4595  
    66    $action = 'editedcat';
    77    $nonce_action = 'update-category_' . $cat_ID;
     8    do_action('edit_category_form_pre', $category);
    89} else {
    910    $heading = __('Add Category');
     
    1213    $action = 'addcat';
    1314    $nonce_action = 'add-category';
     15    do_action('add_category_form_pre', $category);
    1416}
    1517?>
Note: See TracChangeset for help on using the changeset viewer.