In the file named "template.php", there is a function named "_phptemplate_variables" which makes a call to the "taxonomy_node_get_terms" function, without first checking to see if the taxonomy module is installed.

There are any number of places to add a check, below is just one idea:

// change these 2 lines
if(count(taxonomy_node_get_terms($vars['node']->nid)))
  $vars['has_terms'] = TRUE;

// to this
if( function_exists('taxonomy_node_get_terms') )
  $vars['has_terms'] = count(taxonomy_node_get_terms($vars['node']->nid)) ? TRUE : FALSE;

PS. Great theme, thanks

Comments

itapplication’s picture

Status: Active » Closed (won't fix)