Hello,
i tried to using the =* IN Operator like that:
but while = works, =s makes the whereClause vanish from the sql.
The IN value for example ('1','3') is messed up to '(\'1\',\'3\')').
As workaround i use [customWhere].
i tried to using the =* IN Operator like that:
PHP Code:
$result['whereClause'][] = array('name =s' => $user->get('filterVtrKunde'));
The IN value for example ('1','3') is messed up to '(\'1\',\'3\')').
As workaround i use [customWhere].
Comment