From 6f4b4e0e01a039c2098abdc0bbc73d68111a68cc Mon Sep 17 00:00:00 2001 From: pookey Date: Mon, 5 Feb 2007 14:13:13 +0000 Subject: [PATCH] removing exception when trying to call connection twice --- lib/Doctrine/Manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Manager.php b/lib/Doctrine/Manager.php index 79fd27c1b..98deff469 100644 --- a/lib/Doctrine/Manager.php +++ b/lib/Doctrine/Manager.php @@ -197,7 +197,7 @@ class Doctrine_Manager extends Doctrine_Configurable implements Countable, Itera if ($name !== null) { $name = (string) $name; if (isset($this->connections[$name])) { - throw new Doctrine_Manager_Exception("Connection with $name already exists!"); + return $this->connections[$name]; } } else { $name = $this->index;