From b091873842cc4154e83514299823fcea93603d68 Mon Sep 17 00:00:00 2001 From: Daniel Wehner <daniel.wehner@erdfisch.de> Date: Sun, 12 Aug 2012 22:48:15 +0200 Subject: [PATCH] another approach to fix the wizard tests --- lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php b/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php index 6acded5c65c0..799eec2a7c4a 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 { -- GitLab