This commit is contained in:
Joey Kimsey
2025-02-25 13:09:01 -05:00
parent cfa53c9e70
commit 89d30a8d36
2 changed files with 2 additions and 5 deletions

View File

@ -349,7 +349,7 @@ class Database {
}
$tableName = Config::getValue( 'database/dbPrefix' ) . $tableName;
$sql = "{$action} FROM `{$tableName}` WHERE ";
$validOperators = ['=', '!=', '>', '<', '>=', '<=', 'LIKE', 'IS'];
$validOperators = ['=', '!=', '>', '<', '>=', '<=', 'LIKE', 'IS', 'IN'];
$validDelimiters = ['AND', 'OR'];
$values = [];
while ( $whereCount > 2 ) {