|
@@ -2238,11 +2238,11 @@ class Database
|
|
|
if ($v == 'yes') {
|
|
|
# 有值
|
|
|
$param['option'][$k] = array('yes', '!=');
|
|
|
- $param['option_' . $k] = 'null';
|
|
|
+ //$param['option_' . $k] = 'null';
|
|
|
} elseif ($v == 'no') {
|
|
|
# 无值
|
|
|
$param['option'][$k] = array('yes', '=');
|
|
|
- $param['option_' . $k] = 'null';
|
|
|
+ //$param['option_' . $k] = 'null';
|
|
|
} elseif (strpos($v, '|')) {
|
|
|
# 有无值或者自定义的值
|
|
|
$temp = explode('|', $v);
|
|
@@ -2254,7 +2254,7 @@ class Database
|
|
|
$param['option'][$k] = array('yes', '=', 'and(');
|
|
|
$param['option'][$k . '_t1'] = array('yes-' . $k, '=', 'or)');
|
|
|
}
|
|
|
- $param['option_' . $k . '_t1'] = 'null';
|
|
|
+ //$param['option_' . $k . '_t1'] = 'null';
|
|
|
} else {
|
|
|
# 自定义的值
|
|
|
$param['option_' . $k] = $v;
|