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
$this->_orderBy = array();
$this->groupBy = array();
$this->_bindParams = array(''); // Create the empty 0 index
unset($this->_query);
unset($this->_whereTypeList);
unset($this->_paramTypeList);
$this->_query = null;
$this->_whereTypeList = null;
$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