Make WordPress Core


Ignore:
Timestamp:
12/13/2010 09:21:50 PM (15 years ago)
Author:
ryan
Message:

Pink trailing whites.

File:
1 edited

Legend:

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

    r16854 r16900  
    605605
    606606            $query['terms'] = (array) $query['terms'];
    607            
     607
    608608            $this->queries[] = $query;
    609609        }
     
    707707     * @param string $taxonomy The taxonomy of the terms
    708708     * @param string $field The initial field
    709      * @param string $resulting_field The resulting field   
     709     * @param string $resulting_field The resulting field
    710710     */
    711711    function _transform_terms( &$terms, $taxonomy, $field, $resulting_field ) {
     
    15831583 * Will unlink the object from the taxonomy or taxonomies.
    15841584 *
    1585  * Will remove all relationships between the object and any terms in 
    1586  * a particular taxonomy or taxonomies. Does not remove the term or 
     1585 * Will remove all relationships between the object and any terms in
     1586 * a particular taxonomy or taxonomies. Does not remove the term or
    15871587 * taxonomy itself.
    15881588 *
     
    16981698    $tax_object = get_taxonomy( $taxonomy );
    16991699    foreach ( $tax_object->object_type as $object_type )
    1700         clean_object_term_cache( $objects, $object_type ); 
    1701    
     1700        clean_object_term_cache( $objects, $object_type );
     1701
    17021702    do_action( 'delete_term_taxonomy', $tt_id );
    17031703    $wpdb->query( $wpdb->prepare( "DELETE FROM $wpdb->term_taxonomy WHERE term_taxonomy_id = %d", $tt_id ) );
Note: See TracChangeset for help on using the changeset viewer.