diff options
author | Christian Schneider | 2007-09-21 12:25:51 +0000 |
---|---|---|
committer | Christian Schneider | 2007-09-21 12:25:51 +0000 |
commit | 622c7b7aa48ab4a4544fdc89af91bcff6c219c75 (patch) | |
tree | 5d9359938a268c930b335a460c2f1dff786e8294 /it_dbi.class | |
parent | 40388384005eba62a6e9e9fc222b6203ecfebcfb (diff) | |
download | itools-622c7b7aa48ab4a4544fdc89af91bcff6c219c75.tar.gz itools-622c7b7aa48ab4a4544fdc89af91bcff6c219c75.tar.bz2 itools-622c7b7aa48ab4a4544fdc89af91bcff6c219c75.zip |
Simplify expression
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))) |