From 75879e3f18a0896a9648d7b684683e9fb8624a59 Mon Sep 17 00:00:00 2001 From: Chuck Hagenbuch Date: Sun, 2 Jul 2000 19:04:36 +0000 Subject: [PATCH] i don't think there's a reason to nuke the db handle here (when freeing results). --- pear/DB.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pear/DB.php b/pear/DB.php index be6ccd4a6d6..f016d48e4bd 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; }