Make WordPress Core

Ticket #14485: 14485.2.diff

File 14485.2.diff, 663 bytes (added by kovshenin, 11 years ago)
  • src/wp-includes/taxonomy.php

     
    27702770 */
    27712771function clean_term_cache($ids, $taxonomy = '', $clean_taxonomy = true) {
    27722772        global $wpdb;
    2773         static $cleaned = array();
    27742773
    27752774        if ( !is_array($ids) )
    27762775                $ids = array($ids);
     
    27982797        }
    27992798
    28002799        foreach ( $taxonomies as $taxonomy ) {
    2801                 if ( isset($cleaned[$taxonomy]) )
    2802                         continue;
    2803                 $cleaned[$taxonomy] = true;
    2804 
    28052800                if ( $clean_taxonomy ) {
    28062801                        wp_cache_delete('all_ids', $taxonomy);
    28072802                        wp_cache_delete('get', $taxonomy);