From f9afde41813ae6eea2ac5e94466175dc8494a822 Mon Sep 17 00:00:00 2001 From: catch Date: Thu, 27 Sep 2012 11:42:29 +0100 Subject: [PATCH] Issue #1796278 by chx: Remove leftover debug. --- core/lib/Drupal/Core/Database/Query/Condition.php | 1 - 1 file changed, 1 deletion(-) diff --git a/core/lib/Drupal/Core/Database/Query/Condition.php b/core/lib/Drupal/Core/Database/Query/Condition.php index f7d2a2f169b..784ed78309c 100644 --- a/core/lib/Drupal/Core/Database/Query/Condition.php +++ b/core/lib/Drupal/Core/Database/Query/Condition.php @@ -165,7 +165,6 @@ class Condition implements ConditionInterface, Countable { $conjunction = $conditions['#conjunction']; unset($conditions['#conjunction']); foreach ($conditions as $condition) { - if (!empty($GLOBALS['lg'])) debug($condition); if (empty($condition['operator'])) { // This condition is a literal string, so let it through as is. $condition_fragments[] = ' (' . $condition['field'] . ') ';