Closed (fixed)
Project:
Taxonomy VTN
Version:
6.x-1.7
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
9 Dec 2009 at 17:36 UTC
Updated:
4 Apr 2010 at 22:40 UTC
Description was always shown no matter what I choose in admin.
So found which line causes such a behavior.
file: taxonomy_vtn.pages.inc
line 374
function taxonomy_vtn_show_terms(...
function taxonomy_vtn_show_terms = TRUE --> always TRUE
quick fix
$show_voc_desc = variable_get('taxonomy_vtn_vocabularies_show_voc_desc', 1);
if (!is_object($params)) {
$params = new stdClass;
$params->check_omit = TRUE;
$params->title_mode = 'title';
$params->show_voc_desc = $show_voc_desc;
}
Comments
Comment #1
AlexisWilke commentedHi Yugene,
This should now be fixed in the -dev version. Thank you for reporting & a fix!
Best,
Alexis
Comment #2
AlexisWilke commentedIf you still have a problem, let me know. I'll suppose that this is fixed for now.
Thank you.
Alexis