Make WordPress Core


Ignore:
Timestamp:
08/25/2008 09:50:11 PM (16 years ago)
Author:
ryan
Message:

Notice fixes. see #7509

File:
1 edited

Legend:

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

    r8646 r8732  
    610610
    611611    if ( $cache = wp_cache_get( 'get_terms', 'terms' ) ) {
    612         if ( isset( $cache[ $key ] ) )
    613             return apply_filters('get_terms', $cache[$key], $taxonomies, $args);
     612        if ( isset( $cache[ $key ] ) ) {
     613            $terms = apply_filters('get_terms', $cache[$key], $taxonomies, $args);
     614            return $terms;
     615        }
    614616    }
    615617
Note: See TracChangeset for help on using the changeset viewer.