1
0
mirror of synced 2025-01-18 22:41:43 +03:00
This commit is contained in:
zYne 2007-01-11 23:57:30 +00:00
parent 6993485425
commit 69a2490a63

View File

@ -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);