Changeset 1898 for trunk/system/libraries/drivers/Database/Mysql.php
- Timestamp:
- 02/01/2008 06:22:27 PM (10 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/drivers/Database/Mysql.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/drivers/Database/Mysql.php
r1895 r1898 59 59 60 60 // Build the connection info 61 $host = (isset($host)) ? $host : $socket;62 $port = (isset($port)) ? ':'.$port : '';61 $host = isset($host) ? $host : $socket; 62 $port = isset($port) ? ':'.$port : ''; 63 63 64 64 // Make the connection and select the database
