Closed (fixed)
Project:
Taxonomy classes
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
23 Nov 2010 at 18:44 UTC
Updated:
2 Feb 2011 at 20:59 UTC
Steps:
Result: The values of classname for the terms will be lost.
Solution: In "taxonomy_classes.module" modify the function "taxonomy_classes_taxonomy".
function taxonomy_classes_taxonomy($op, $type, $data = NULL) {
$id = $type == 'vocabulary' ? $data['vid'] : $data['tid'];
if(isset($data['classnames'])) {
_taxonomy_classes_save($id, $type, $data['classnames']);
}
}
Best regards, Dimas.
Comments
Comment #1
nico heulsen commentedHi Dimas,
Thx for the feedback and the solution!
Commited the new code
Grtz
Nico