Skip to content

Commit 9b9f1b0

Browse files
authored
Merge pull request #510 from ricwein/master
ensures php5.3 compatible array syntax
2 parents bd4fb1b + 5a30aa3 commit 9b9f1b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MysqliDb.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ public function insertMulti($tableName, array $multiInsertData, array $dataKeys
692692
{
693693
// only auto-commit our inserts, if no transaction is currently running
694694
$autoCommit = (isset($this->_transaction_in_progress) ? !$this->_transaction_in_progress : true);
695-
$ids = [];
695+
$ids = array();
696696

697697
if($autoCommit) {
698698
$this->startTransaction();

0 commit comments

Comments
 (0)