Make WordPress Core

Changeset 13626


Ignore:
Timestamp:
03/09/2010 10:53:02 AM (16 years ago)
Author:
dd32
Message:

Update 'edited_term_taxonomy' to pass the same args in all locations called. See #12348

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/taxonomy.php

    r13625 r13626  
    18591859    do_action( 'edit_term_taxonomy', $tt_id, $taxonomy );
    18601860    $wpdb->update( $wpdb->term_taxonomy, compact( 'term_id', 'taxonomy', 'description', 'parent' ), array( 'term_taxonomy_id' => $tt_id ) );
    1861     do_action( 'edited_term_taxonomy', $tt_id );
     1861    do_action( 'edited_term_taxonomy', $tt_id, $taxonomy );
    18621862
    18631863    do_action("edit_term", $term_id, $tt_id, $taxonomy);
Note: See TracChangeset for help on using the changeset viewer.