? tagadelic_readmore_fix.patch Index: tagadelic.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/tagadelic/tagadelic.module,v retrieving revision 1.39 diff -u -r1.39 tagadelic.module --- tagadelic.module 10 Feb 2008 19:38:27 -0000 1.39 +++ tagadelic.module 11 Feb 2008 23:34:51 -0000 @@ -340,7 +340,9 @@ $tags = tagadelic_get_weighted_tags(array($voc->vid), variable_get('tagadelic_levels', 6), variable_get('tagadelic_block_tags_'. $delta, 12)); $tags = tagadelic_sort_tags($tags); $blocks['content'] = theme('tagadelic_weighted', $tags);//return a chunk of 12 tags - $blocks['content'] .= theme('tagadelic_more', $voc->vid);//add more link + if (count($tags) == variable_get('tagadelic_block_tags_'. $delta, 12)) { + $blocks['content'] .= theme('tagadelic_more', $voc->vid);//add more link + } } elseif(arg(0) == 'node' && is_numeric(arg(1)) && $node = node_load(arg(1))) { $blocks['subject'] = t('tags for @title', array('@title' => $node->title));