Changeset 22878
- Timestamp:
- 11/27/2012 07:42:38 PM (12 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post.php
r22743 r22878 3197 3197 } 3198 3198 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 ); 3206 3200 } 3207 3201 -
trunk/wp-includes/taxonomy.php
r22634 r22878 2239 2239 } 2240 2240 2241 wp_cache_delete( $object_id, $taxonomy . '_relationships' ); 2242 2241 2243 do_action('set_object_terms', $object_id, $terms, $tt_ids, $taxonomy, $append, $old_tt_ids); 2242 2244 return $tt_ids;
Note: See TracChangeset
for help on using the changeset viewer.