Skip to content

Commit

Permalink
fixes (#701)
Browse files Browse the repository at this point in the history
* v2.9.1 bugfix release declate missing variable
  • Loading branch information
avbdr committed Nov 30, 2017
1 parent 1f45192 commit 30d7d0f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion MysqliDb.php
Expand Up @@ -10,7 +10,7 @@
* @copyright Copyright (c) 2010-2017
* @license http://opensource.org/licenses/gpl-3.0.html GNU Public License
* @link http://github.com/joshcam/PHP-MySQLi-Database-Class
* @version 2.9
* @version 2.9.1
*/

class MysqliDb
Expand Down Expand Up @@ -220,6 +220,11 @@ class MysqliDb
public $autoReconnect = true;
protected $autoReconnectCount = 0;

/**
* @var bool Operations in transaction indicator
*/
protected $_transaction_in_progress = false;

/**
* @param string $host
* @param string $username
Expand Down

0 comments on commit 30d7d0f

Please sign in to comment.