ensureMyTable(); $where = "$this->tableAlias.$this->realField "; if (empty($this->value)) { $where .= "= ''"; if ($this->accept_null) { $where = '(' . $where . " OR $this->tableAlias.$this->realField IS NULL)"; } } else { $where .= "<> ''"; } $this->query->addWhereExpression($this->options['group'], $where); } }