In the method taxonomy_super_select_nodeapi there is

      foreach ($node->taxonomy as $vid => $terms) {
        // Only check vocabularies present
        if (is_numeric($vid)) {

$vid for tags equals a string. Later on within that there are checks/code for tags but it is never executed because $vid fails the check to see if it is numeric. This may be related to #371291: PHP Error when I click on Preview.

Comments

jcisio’s picture

Status: Active » Fixed

$vid is always a number, it's the vocabulary ID. I don't know why there is this check. But there should not be a problem.

Status: Fixed » Closed (fixed)

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