Exposed Filter Reset Bug

I have run into this issue - Reset button on exposed filters causes a redirect loop - several times.  So far the best solution is to build a module as stated in http://drupal.org/node/1807916#comment-7124206.

function modulename_form_alter(&$form, &$form_state, $form_id) {
  switch ($form_id) {
    case 'views_exposed_form':
      // Form Reset button fix. 
      $form_state['redirect'] = current_path();
      break;
  }
}

So far it seems to work for me...