diff --git a/lib/Doctrine/Db.php b/lib/Doctrine/Db.php index b69462981..e01ebccd9 100644 --- a/lib/Doctrine/Db.php +++ b/lib/Doctrine/Db.php @@ -100,8 +100,8 @@ class Doctrine_Db implements Countable, IteratorAggregate, Doctrine_Adapter_Inte */ public function __construct($dsn, $user = null, $pass = null) { - // check the dsn is PEAR-like or not - if ( ! isset($user) && strpos($dsn, '://')) { + // check if dsn is PEAR-like or not + if ( ! isset($user) || strpos($dsn, '://')) { $a = self::parseDSN($dsn); extract($a);