ensure_my_table(); $where = "$this->table_alias.$this->real_field "; if (empty($this->value)) { $where .= "= ''"; if ($this->accept_null) { $where = '(' . $where . " OR $this->table_alias.$this->real_field IS NULL)"; } } else { $where .= "<> ''"; } $this->query->add_where($this->options['group'], $where); } }