Changeset 316

Show
Ignore:
Timestamp:
08/22/07 10:49:32 (1 year ago)
Author:
bermiferrer
Message:

Fixing a bug on phpadodb that prevented from connecting to a database using a non standard port.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/vendor/adodb/adodb.inc.php

    r2 r316  
    37233723                        if ($errorfn)  $obj->raiseErrorFn = $errorfn; 
    37243724                        if (isset($dsna)) { 
    3725                                 if (isset($dsn['port'])) $obj->port = $dsn['port']; 
     3725                                if (isset($dsna['port'])) $obj->port = $dsna['port']; 
    37263726                                foreach($opt as $k => $v) { 
    37273727                                        switch(strtolower($k)) {