Skip to content

Commit 30d7d0f

Browse files
authored
fixes (#701)
* v2.9.1 bugfix release declate missing variable
1 parent 1f45192 commit 30d7d0f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

MysqliDb.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* @copyright Copyright (c) 2010-2017
1111
* @license http://opensource.org/licenses/gpl-3.0.html GNU Public License
1212
* @link http://github.com/joshcam/PHP-MySQLi-Database-Class
13-
* @version 2.9
13+
* @version 2.9.1
1414
*/
1515

1616
class MysqliDb
@@ -220,6 +220,11 @@ class MysqliDb
220220
public $autoReconnect = true;
221221
protected $autoReconnectCount = 0;
222222

223+
/**
224+
* @var bool Operations in transaction indicator
225+
*/
226+
protected $_transaction_in_progress = false;
227+
223228
/**
224229
* @param string $host
225230
* @param string $username

0 commit comments

Comments
 (0)