We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03dbce1 commit a671ad8Copy full SHA for a671ad8
MysqliDb.php
@@ -1835,7 +1835,7 @@ protected function _buildInsertQuery($tableData)
1835
$dataColumns = array_keys($tableData);
1836
if ($isInsert) {
1837
if (isset ($dataColumns[0]))
1838
- $this->_query .= ' (`' . implode($dataColumns, '`, `') . '`) ';
+ $this->_query .= ' (`' . implode('`, `', $dataColumns) . '`) ';
1839
$this->_query .= ' VALUES (';
1840
} else {
1841
$this->_query .= " SET ";
0 commit comments