When you edit a node and display the "Block Taxonomy Settings", the first term is not showing.. the listing starts from 1 instead of 0.
To make it work, I had to comment out this line 67 of blockterm.module:
vocab_select['#options'] = is_string($vocab_select['#options']["0"]) ? $vocab_select['#options'] : array(0 => theme('none_option')) + $vocab_select['#options'];
Comments
Comment #1
Anonymous (not verified) commentedThis problem is related to the following problem: http://drupal.org/node/199675
The patch is also comparable. Instead of commenting out line 67 like you did, just replace ['#options']["0"] with ['#options'][''].
For some reason, this was changed in the taxonomy module between 5.3 and 5.4