summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Hagenbuch <chagenbu@php.net>2000-07-02 19:04:36 +0000
committerChuck Hagenbuch <chagenbu@php.net>2000-07-02 19:04:36 +0000
commit75879e3f18a0896a9648d7b684683e9fb8624a59 (patch)
treefb5454432063a13d24c9790719ad452087dfcc2b
parent8a4e08da4f339e6e3658bbe267fb1cd0cd9d528b (diff)
downloadphp-git-75879e3f18a0896a9648d7b684683e9fb8624a59.tar.gz
i don't think there's a reason to nuke the db handle here (when freeing
results).
-rw-r--r--pear/DB.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/pear/DB.php b/pear/DB.php
index be6ccd4a6d..f016d48e4b 100644
--- a/pear/DB.php
+++ b/pear/DB.php
@@ -469,7 +469,7 @@ class DB_result {
if (DB::isError($err)) {
return $err;
}
- $this->dbh = $this->result = false;
+ $this->result = false;
return true;
}