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;
}
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | tagadelic-227910-1.patch | 797 bytes | jgoldberg |
Comments
Comment #1
jgoldberg commentedGood find.
Comment #2
pfaoclePatch applies fine, etc etc... +1
Comment #3
Bèr Kessels commentedcomitted to DRUPAL-6 branch.
Once we have more bugfixes in there, I will issue a new release.
Comment #4
Bèr Kessels commentedComment #5
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.