After fixing line 89 as instructed (http://drupal.org/node/350806), I got an error message about an invalid function on line 390 of the same module. Searched around for the function and found what I think is a type. Changed line 390:
return count(_taxonomy_hierarchical_select_get_tree($params['vid'], 0, -1, $params['depth']));
To say:
return count(_hs_taxonomy_hierarchical_select_get_tree($params['vid'], 0, -1, $params['depth']));
That is, the function name needed to be preceded by "_hs". Once I fixed that, no error message. Just wanted to pass that on. Thanks again to Wim Leers for the module and to sdsheridan for the fix.
Comments
Comment #1
wim leersThanks! Committed :)
http://drupal.org/cvs?commit=179986