|
@@ -274,7 +274,7 @@ class Base {
|
|
|
if(is_callable($item['func'])) {
|
|
|
$subWhere = call_user_func($item['func'], $where, $item['args']);
|
|
|
foreach ($subWhere as $key => $value) {
|
|
|
- if(is_array($value)) {
|
|
|
+ if(!preg_match("/[0-9]/", $key) && is_array($value) && count($value, 1) != count($value)) {
|
|
|
foreach ($value as $k => $v) {
|
|
|
if($this->alias != "") {
|
|
|
if(!preg_match("/^[a-zA-Z_]\./", $k)) {
|