Closed (fixed)
Project:
OG Vocabulary
Version:
master
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
23 Jun 2006 at 12:58 UTC
Updated:
15 Oct 2006 at 01:15 UTC
This module does not seem to support the ability to use freetagging taxonomies. I've narrowed it down to this code in the module:
$keys = array_keys($form['taxonomy']);
$empty = TRUE;
foreach ($keys as $key) {
if (is_numeric($key)) {
$empty = FALSE;
break;
}
}Freetagging taxonomies are not numeric they are represented in the taxonomy form as 'tags' not the vid. Are they intentionally ignored?
Comments
Comment #1
cooperaj commentedTurns out they're not. Simply change the above code to:
and freetagging works just fine.
Comment #2
moshe weitzman commentedcool. thx.
Comment #3
moshe weitzman commentedcommitting to trunk and 4.7
Comment #4
(not verified) commented