another approach to fix the wizard tests

8.0.x
Daniel Wehner 2012-08-12 22:48:15 +02:00 committed by Tim Plunkett
parent 18e563813a
commit b091873842
1 changed files with 1 additions and 1 deletions

View File

@ -671,7 +671,7 @@ abstract class WizardPluginBase implements WizardInterface {
// 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 {