diff options
Diffstat (limited to 'includes/database/select.inc')
-rw-r--r-- | includes/database/select.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/database/select.inc b/includes/database/select.inc index 65b31bc6c..449ab11f4 100644 --- a/includes/database/select.inc +++ b/includes/database/select.inc @@ -423,7 +423,7 @@ class SelectQueryExtender implements SelectQueryInterface { /* Implementations of QueryConditionInterface for the WHERE clause. */ - public function condition($field, $value = NULL, $operator = '=') { + public function condition($field, $value = NULL, $operator = NULL) { $this->query->condition($field, $value, $operator); return $this; } |