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

setvik’s picture

Status: Active » Fixed

fix committed. should be available in dev release later today

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.