From 471a0a00058f3e697af61028dd391ff204c872bf Mon Sep 17 00:00:00 2001 From: zYne Date: Tue, 24 Apr 2007 16:59:07 +0000 Subject: [PATCH] --- lib/Doctrine/Manager.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/Doctrine/Manager.php b/lib/Doctrine/Manager.php index 329cb7a18..e2b80ec4e 100644 --- a/lib/Doctrine/Manager.php +++ b/lib/Doctrine/Manager.php @@ -346,6 +346,14 @@ class Doctrine_Manager extends Doctrine_Configurable implements Countable, Itera public function closeConnection(Doctrine_Connection $connection) { $connection->close(); + + $key = array_search($connection, $this->connections, true); + + if ($key !== false) { + unset($this->connections[$key]); + } + $this->currIndex = key($this->connections[$key]); + unset($connection); } /**