git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8313 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
mosmartin 2011-04-14 11:40:36 +00:00
parent 07cf8dc131
commit a2851cc242

View file

@ -571,13 +571,13 @@
$sub_condition = '';
foreach ($val['condition'] as $v) {
if (!isset ($v['value'])) continue;
if ($v['value'] === '') continue;
$value = $v['value'];
if (!isset ($value)) continue;
if ($value === '') continue;
if(!is_string($value) && !is_integer($value) && !is_float($value) && !is_array($value)) continue;
$name = $v['column'];
$operation = $v['operation'];
$value = $v['value'];
$type = $this->getColumnType ($column_type, $name);
$pipe = $v['pipe'];
$value = $this->getConditionValue ($name, $value, $operation, $type, $column_type);