Hi,
I found that bug in Version 1.1 (r5767), which can not be choosen here in the ticket formular, so I hope it is ok, that I post it even though.
In lib/i18n/sfMessageSource_MySQL.class.php in the connect function, there is:
$dbhost = $dsninfo['hostspec'] ? $dsninfo['hostspec'] : 'localhost';
if (!empty($dsninfo['port']))
{
$dbhost = ':' . $dsninfo['socket'];
}
which of course doesn't make sense. It has to be:
$dbhost = $dsninfo['hostspec'] ? $dsninfo['hostspec'] : 'localhost';
if (!empty($dsninfo['port']))
{
$dbhost .= ':' . $dsninfo['port'];
}