summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Schneider2007-09-21 12:25:51 +0000
committerChristian Schneider2007-09-21 12:25:51 +0000
commit622c7b7aa48ab4a4544fdc89af91bcff6c219c75 (patch)
tree5d9359938a268c930b335a460c2f1dff786e8294
parent40388384005eba62a6e9e9fc222b6203ecfebcfb (diff)
downloaditools-622c7b7aa48ab4a4544fdc89af91bcff6c219c75.tar.gz
itools-622c7b7aa48ab4a4544fdc89af91bcff6c219c75.tar.bz2
itools-622c7b7aa48ab4a4544fdc89af91bcff6c219c75.zip
Simplify expression
-rw-r--r--it_dbi.class2
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)))