in file views_handler_filter_in_operator.inc
there is a problem with a new Drupal 7 Form API
need to change
$process[] = "expand_$this->value_form_type";
to
$process[] = "form_process_$this->value_form_type";
in file views_handler_filter_in_operator.inc
there is a problem with a new Drupal 7 Form API
need to change
$process[] = "expand_$this->value_form_type";
to
$process[] = "form_process_$this->value_form_type";
Comments
Comment #1
dawehnerAwesome. This really helped to solve it.