I didn't notice this before however all taxonomy terms, freetagging or fixed, have disappeared from both teaser view and node views.

(Apr 14 snapshot with localizer.module_2.patch)

Comments

sun’s picture

This is because phptemplate statically checks if taxonomy.module is present:

function phptemplate_node($node, $teaser = 0, $page = 0) {
  if (module_exists('taxonomy')) {
    $taxonomy = taxonomy_link('taxonomy terms', $node);
  }
  else {
    $taxonomy = array();
  }

I'll try to find out if we can somehow hook us into theme variable generation.

sun’s picture

Title: Taxonomy terms disappear from all views » Taxonomy terms not displayed in node view