diff --git a/src/Plugin/views/area/SpellCheck.php b/src/Plugin/views/area/SpellCheck.php index 515aa7c..cbddea1 100644 --- a/src/Plugin/views/area/SpellCheck.php +++ b/src/Plugin/views/area/SpellCheck.php @@ -145,7 +145,7 @@ protected function getFilters() { if (!empty($filter->options['expose']['identifier'])) { $key = $filter->options['expose']['identifier']; } - $this->filters[$key] = !empty($exposed_input[$key]) ? $exposed_input[$key] : FALSE; + $this->filters[$key] = !empty($exposed_input[$key]) ? strtolower($exposed_input[$key]) : FALSE; } } }