This commit is contained in:
2021-03-26 19:33:40 +08:00
parent 6fc91a9190
commit ec3062c58b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -135,7 +135,7 @@ trait Builder
$_tmp[] = $_value;
}
if (!empty($_tmp)) {
return '(' . implode(') AND (', $_tmp) . ')';
return implode(' AND ', $_tmp);
}
return '';
}