Closed (fixed)
Project:
Taxonomy Super Select (TSS)
Version:
6.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
11 May 2009 at 21:36 UTC
Updated:
17 Oct 2010 at 13:20 UTC
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
Comment #1
jcisio commented$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.