diff --git a/handlers/views_handler_filter.inc b/handlers/views_handler_filter.inc index b6d957b6..37c3cc69 100644 --- a/handlers/views_handler_filter.inc +++ b/handlers/views_handler_filter.inc @@ -1384,7 +1384,7 @@ public function accept_exposed_input($input) { $this->operator = ($this->operator == 'empty' && empty($value)) || ($this->operator == 'not empty' && !empty($value)) ? 'not empty' : 'empty'; } - if ($value == 'All' || $value === []) { + if ($value == 'All' || $value === array()) { return FALSE; }