Index: tagadelic.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/tagadelic/Attic/tagadelic.module,v retrieving revision 1.40.2.1 diff -u -p -r1.40.2.1 tagadelic.module --- tagadelic.module 8 Mar 2008 13:11:43 -0000 1.40.2.1 +++ tagadelic.module 24 Apr 2008 23:27:06 -0000 @@ -213,7 +213,7 @@ function tagadelic_get_weighted_tags($vi // Check if the cache exists $cache_name = 'tagadelic_cache_'. $options; - $cache = cache_get($cache_name); + $cache = cache_get($cache_name, 'cache_block'); // make sure cache has data if (isset($cache->data)) { @@ -228,7 +228,7 @@ function tagadelic_get_weighted_tags($vi $tags = tagadelic_build_weighted_tags($result, $steps); - cache_set($cache_name, $tags); + cache_set($cache_name, $tags, 'cache_block', CACHE_TEMPORARY); } return $tags;