Fix error in search method.

This commit is contained in:
kj 2020-03-17 13:53:48 -04:00
parent 28880347a4
commit 682452efc1
1 changed files with 1 additions and 2 deletions

View File

@ -562,8 +562,7 @@ class ModelMySQL {
$where = [];
foreach($in as $row){
if(in_array($row, $objAtts))
$where[] = "$row LIKE '%$search%'";
$where[] = "$row LIKE '%$search%'";
}
if (self::$querySelect['where']=='')