Correct me if I'm wrong, but in between #14 and #19 of our d6 update, we missed a correction in subsequent patches:

~line 360:

    foreach (taxonomy_get_vocabularies() as $voc) {
      $blocks[$voc->vid]['info'] = variable_get('tagadelic_block_title_'. $voc->vid, t('Tags in @voc', array('@voc' => $voc->name)));
      $blocks[0]['cache'] = BLOCK_CACHE_GLOBAL;
    }

Should be:

    foreach (taxonomy_get_vocabularies() as $voc) {
      $blocks[$voc->vid]['info'] = variable_get('tagadelic_block_title_'. $voc->vid, t('Tags in @voc', array('@voc' => $voc->name)));
      $blocks[$voc->vid]['cache'] = BLOCK_CACHE_GLOBAL;
    }
CommentFileSizeAuthor
#1 tagadelic-227910-1.patch797 bytesjgoldberg

Comments

jgoldberg’s picture

Status: Active » Needs review
StatusFileSize
new797 bytes

Good find.

pfaocle’s picture

Version: 6.x-1.0 » 6.x-1.x-dev
Status: Needs review » Reviewed & tested by the community

Patch applies fine, etc etc... +1

Bèr Kessels’s picture

comitted to DRUPAL-6 branch.
Once we have more bugfixes in there, I will issue a new release.

Bèr Kessels’s picture

Status: Reviewed & tested by the community » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.