Replace "insert" with "replace"

This commit is contained in:
Michael 2020-08-27 21:35:08 +00:00
parent e4207408ee
commit 44ee4a54b4
2 changed files with 2 additions and 2 deletions

View file

@ -1421,7 +1421,7 @@ class Database
if (is_bool($old_fields)) {
if ($do_insert) {
$values = array_merge($condition, $fields);
return $this->insert($table, $values, $do_insert);
return $this->replace($table, $values);
}
$old_fields = [];
}