Unverified Commit 30d7d0fe authored by Alexander Butenko's avatar Alexander Butenko Committed by GitHub

fixes (#701)

* v2.9.1 bugfix release declate missing variable
parent 1f451924
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* @copyright Copyright (c) 2010-2017 * @copyright Copyright (c) 2010-2017
* @license http://opensource.org/licenses/gpl-3.0.html GNU Public License * @license http://opensource.org/licenses/gpl-3.0.html GNU Public License
* @link http://github.com/joshcam/PHP-MySQLi-Database-Class * @link http://github.com/joshcam/PHP-MySQLi-Database-Class
* @version 2.9 * @version 2.9.1
*/ */
class MysqliDb class MysqliDb
...@@ -220,6 +220,11 @@ class MysqliDb ...@@ -220,6 +220,11 @@ class MysqliDb
public $autoReconnect = true; public $autoReconnect = true;
protected $autoReconnectCount = 0; protected $autoReconnectCount = 0;
/**
* @var bool Operations in transaction indicator
*/
protected $_transaction_in_progress = false;
/** /**
* @param string $host * @param string $host
* @param string $username * @param string $username
......
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