Add Two-factor recovery code model

- [DBA] Add NULL value handling in condition array
This commit is contained in:
Hypolite Petovan 2019-05-13 01:34:40 -04:00
parent c6ef7f5965
commit a7feb4bf9f
2 changed files with 72 additions and 0 deletions

View file

@ -1484,6 +1484,8 @@ class DBA
$new_values = array_merge($new_values, array_values($value));
$placeholders = substr(str_repeat("?, ", count($value)), 0, -2);
$condition_string .= "`" . $field . "` IN (" . $placeholders . ")";
} elseif (is_null($value)) {
$condition_string .= "`" . $field . "` IS NULL";
} else {
$new_values[$field] = $value;
$condition_string .= "`" . $field . "` = ?";