Skip to:
Content

bbPress.org

Ticket #1300: bb-topic-tags-cache.patch

File bb-topic-tags-cache.patch, 586 bytes (added by Nightgunner5, 15 years ago)
  • TabularUnified bb-includes/functions.bb-topic-tags.php

     
    270270        $cache_id = $topic_id . serialize( $args );
    271271
    272272        $terms = wp_cache_get( $cache_id, 'bb_topic_tag_terms' );
    273         if ( empty( $terms ) ) {
     273        if ( $terms === false ) {
    274274                $terms = $wp_taxonomy_object->get_object_terms( (int) $topic->topic_id, 'bb_topic_tag', $args );
    275275                wp_cache_set( $cache_id, $terms, 'bb_topic_tag_terms' );
    276276        }