Commit 5a30aa37 authored by Richard Weinhold's avatar Richard Weinhold

ensures php5.3 compatible array syntax

parent bd4fb1b7
......@@ -692,7 +692,7 @@ class MysqliDb
{
// only auto-commit our inserts, if no transaction is currently running
$autoCommit = (isset($this->_transaction_in_progress) ? !$this->_transaction_in_progress : true);
$ids = [];
$ids = array();
if($autoCommit) {
$this->startTransaction();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment