By replacing
if (!isset($form_state['storage']['hs']['js_settings_sent'][$hsid]) ){
with
if (!isset($form_state['storage']['hs']['js_settings_sent'][$hsid]) || (isset($form_state['storage']['hs']['js_settings_sent'][$hsid]) && (isset($form_state['triggering_element']) && $form_state['triggering_element']['#type'] == 'submit'))) {
on line 411 of hierarchical_select.module I am able to get it working.
I realise this is a pretty dirty has so I thought someone who knows the module better would be able to come up with a better solution
Comments
Comment #1
stefan.r commented