diff -u b/core/modules/search/src/ViewsSearchQuery.php b/core/modules/search/src/ViewsSearchQuery.php --- b/core/modules/search/src/ViewsSearchQuery.php +++ b/core/modules/search/src/ViewsSearchQuery.php @@ -74,9 +74,8 @@ $conditions =& $condition['field']->conditions(); foreach ($conditions as $key => &$subcondition) { if (is_numeric($key)) { - // As conditions can have subconditions, - // for example new Condition('OR'), - // the function has to be called recursively. + // As conditions can have subconditions,for example + // new Condition('OR'),the function has to be called recursively. $this->conditionReplaceString($search, $replace, $subcondition); } } diff -u b/core/modules/views/src/ManyToOneHelper.php b/core/modules/views/src/ManyToOneHelper.php --- b/core/modules/views/src/ManyToOneHelper.php +++ b/core/modules/views/src/ManyToOneHelper.php @@ -269,8 +269,9 @@ $options['group'] = 0; } - // add_condition determines whether a single expression is enough(FALSE) or the - // conditions should be added via an new Condition('OR')/new Condition('AND') (TRUE). + // add_condition determines whether a single expression is enough(FALSE) + // or the conditions should be added via an new Condition('OR')/ + // new Condition('AND') (TRUE). $add_condition = TRUE; if ($operator == 'not') { $value = NULL;