From 7260134d8b86fe14e9f320e92073b1ade6f9fdf8 Mon Sep 17 00:00:00 2001
From: GoZ <goz@226961.no-reply.drupal.org>
Date: Tue, 4 Oct 2016 12:01:49 +0200
Subject: [PATCH] Issue #2810985: Remove duplicate condition

---
 core/modules/views/src/Plugin/views/filter/Combine.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/modules/views/src/Plugin/views/filter/Combine.php b/core/modules/views/src/Plugin/views/filter/Combine.php
index e13df51..97447ee 100644
--- a/core/modules/views/src/Plugin/views/filter/Combine.php
+++ b/core/modules/views/src/Plugin/views/filter/Combine.php
@@ -71,7 +71,7 @@ public function query() {
       $field = $this->view->field[$id];
       // Always add the table of the selected fields to be sure a table alias exists.
       $field->ensureMyTable();
-      if (!empty($field->field_alias) && !empty($field->field_alias)) {
+      if (!empty($field->field_alias)) {
         $fields[] = "$field->tableAlias.$field->realField";
       }
     }
-- 
2.7.4 (Apple Git-66)

