diff --git a/b8/Database.php b/b8/Database.php index b856506..c0c8fab 100755 --- a/b8/Database.php +++ b/b8/Database.php @@ -92,6 +92,11 @@ public static function getConnection($type = 'read') // Pull the next server: $server = array_shift($servers); + if (stristr($server, ':')) { + list($host, $port) = explode(':', $server); + $server = $host . ';port=' . $port; + } + // Try to connect: try { $connection = new self('mysql:host=' . $server . ';dbname=' . self::$details['db'],