diff --git a/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php b/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php index 6acded5c65c0888f5e76c426bda979525f6f7374..799eec2a7c4a10da5e128288e2a2e306c5cbb4eb 100644 --- a/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php +++ b/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php @@ -671,7 +671,7 @@ protected function default_display_filters_user($form, $form_state) { // Check whether the bundle key filter handler is or an child of it in_operator // If it's not just use a single value instead of an array. $handler = $table_data[$bundle_key]['filter']['id']; - if ($handler == 'in_operator' || is_subclass_of($handler, 'Drupal\views\Plugin\views\filter\InOperator')) { + if ($handler == 'in_operator' || is_subclass_of($handler, 'Drupal\\views\\Plugin\\views\\filter\\InOperator')) { $value = drupal_map_assoc(array($form_state['values']['show']['type'])); } else {