Remove die on upsert

This commit is contained in:
2024-05-25 12:23:48 +02:00
parent 3b5808523d
commit 81a9c919dd

View File

@@ -501,8 +501,6 @@ class Db extends PhpObject
"VALUES (".implode(", ", $asQueryValues).") ". "VALUES (".implode(", ", $asQueryValues).") ".
"ON DUPLICATE KEY UPDATE ".$this->implodeAll($asUpdateValues, " = ", ", "); "ON DUPLICATE KEY UPDATE ".$this->implodeAll($asUpdateValues, " = ", ", ");
die($sQuery);
return $this->setQuery($sQuery)?$this->getLastId():0; return $this->setQuery($sQuery)?$this->getLastId():0;
} }