Commit 9e81b763 authored by Alexander Butenko's avatar Alexander Butenko

Merge pull request #1 from joshfraser/patch-1

Calling reset should set values to null instead of unsetting them
parents 7420002d f0e65bd5
...@@ -115,9 +115,9 @@ class MysqliDb ...@@ -115,9 +115,9 @@ class MysqliDb
$this->_orderBy = array(); $this->_orderBy = array();
$this->groupBy = array(); $this->groupBy = array();
$this->_bindParams = array(''); // Create the empty 0 index $this->_bindParams = array(''); // Create the empty 0 index
unset($this->_query); $this->_query = null;
unset($this->_whereTypeList); $this->_whereTypeList = null;
unset($this->_paramTypeList); $this->_paramTypeList = null;
} }
/** /**
......
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