Closed (fixed)
Project:
Better Select
Version:
6.x-1.x-dev
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
1 Sep 2008 at 06:15 UTC
Updated:
20 Sep 2008 at 03:31 UTC
In hook_form_alter, the code
$form['#submit'] = array('betterselect_taxonomy_from_checkboxes');
overwrites the node_form's $form['#submit'] for any node with taxonomy. This breaks any module that attaches and relies on its own submit function before the betterselect_form_alter executes. One module affected by this bug is the Drupal core Upload module.
Adjusting that line of code to the following fixed it for me:
$form['#submit'][] = 'betterselect_taxonomy_from_checkboxes';
Comments
Comment #1
setvik commentedfix committed. should be available in dev release later today
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.