Ticket #1300: bb-topic-tags-cache.patch
File bb-topic-tags-cache.patch, 586 bytes (added by , 15 years ago) |
---|
-
TabularUnified bb-includes/functions.bb-topic-tags.php
270 270 $cache_id = $topic_id . serialize( $args ); 271 271 272 272 $terms = wp_cache_get( $cache_id, 'bb_topic_tag_terms' ); 273 if ( empty( $terms )) {273 if ( $terms === false ) { 274 274 $terms = $wp_taxonomy_object->get_object_terms( (int) $topic->topic_id, 'bb_topic_tag', $args ); 275 275 wp_cache_set( $cache_id, $terms, 'bb_topic_tag_terms' ); 276 276 }