Changeset 35032 for trunk/src/wp-includes/taxonomy-functions.php
- Timestamp:
- 10/12/2015 03:12:29 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy-functions.php
r35029 r35032 3063 3063 3064 3064 // First, get all of the original args 3065 $term = get_term( $term_id, $taxonomy , ARRAY_A);3065 $term = get_term( $term_id, $taxonomy ); 3066 3066 3067 3067 if ( is_wp_error( $term ) ) { … … 3073 3073 } 3074 3074 3075 $term = (array) $term->data; 3076 3075 3077 // Escape data pulled from DB. 3076 $term = wp_slash( $term);3078 $term = wp_slash( $term ); 3077 3079 3078 3080 // Merge old and new args with new args overwriting old ones.
Note: See TracChangeset
for help on using the changeset viewer.