Make WordPress Core


Ignore:
Timestamp:
11/27/2012 07:42:38 PM (11 years ago)
Author:
ryan
Message:

Clear the object term relationships cache in wp_set_object_terms() rather than wp_set_post_terms(). This should be done lower in the stack than wp_set_post_terms().

Props batmoo
fixes #22560

File:
1 edited

Legend:

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

    r22743 r22878  
    31973197    }
    31983198
    3199     $r = wp_set_object_terms( $post_id, $tags, $taxonomy, $append );
    3200     if ( is_wp_error( $r ) )
    3201         return $r;
    3202 
    3203     wp_cache_delete( $post_id, $taxonomy . '_relationships' );
    3204 
    3205     return $r;
     3199    return wp_set_object_terms( $post_id, $tags, $taxonomy, $append );
    32063200}
    32073201
Note: See TracChangeset for help on using the changeset viewer.