Posted by efaerber on May 11, 2009 at 9:36pm
Jump to:
| Project: | Taxonomy Super Select (TSS) |
| Version: | 6.x-1.0 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (fixed) |
Issue Summary
In the method taxonomy_super_select_nodeapi there is
<?php
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
#1
$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.
#2
Automatically closed -- issue fixed for 2 weeks with no activity.