I created a multi-level taxonomy and then created a CCK taxonomy activeselect field with 2 select boxes and I noticed the 2nd select box wasn't working. That was a few days ago. I made a sample module using activeselect just to make sure that module works and it does. Then I debugged the content_taxonomy_activeselect.module and found that the function content_taxonomy_activeselect() isn't being given the $targets parameter.

The $targets value I noticed gets constructed within the menu_execute_active_handler() function which uses the $_GET['q'] variable which has the data except for the targets! I have no idea how the 'q' variable gets populated, otherwise perhaps I can figure out the problem.

Within the content_taxonomy_activeselect() function, since $targets is empty it just exits and the target select box isn't populated.

azbok

Comments

azbok’s picture

Status: Active » Closed (fixed)

Never mind... I found the patch (http://drupal.org/node/128965) and applied it and it works with populating the target bar. Thanks!