Just to let you know, I had to remove this block of code in the product for it to install on 3.6.0 RC2:
Code:
$version = explode('.', mysql_get_server_info($db->connection_write));
if ($idx = strpos($version[2], '-'))
{
$version[2] = substr($version[2], 0, $idx);
}
if ($version[0] < 4 OR ($version[0] == 4 AND $version[2] < 4))
{
print_cp_message('This Hack requires at least mySQL 4.0.4');
}
Otherwise it spat out an error, whining about an invalid MySQL resource with
mysql_get_server_info.