diff options
Diffstat (limited to 'it_dbi.class')
-rw-r--r-- | it_dbi.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_dbi.class b/it_dbi.class index 5ebf1bf..f36903e 100644 --- a/it_dbi.class +++ b/it_dbi.class @@ -463,7 +463,7 @@ function select($query = null) unset($query['CALC_FOUND_ROWS']); } - $nofetch = $this->_nofetch = isset($query['NOFETCH']) ? $query['NOFETCH'] : false; + $nofetch = $this->_nofetch = $query['NOFETCH']; unset($query['NOFETCH']); if ($this->_result = $this->query($sql = "SELECT $what FROM $join " . $this->_where($query, $this->_link))) |