Black Tiger - 2013-03-24

The install script checks for a mysql version greater then 4.1 but this is the line which checks it:

if (version_compare($mysql, '4.1', '<')) {

It does not recognize mysql 5.x, imho due to the < character which stands for "smaller then".
So I think this should be changed to > and then it checks for versions greater then 4.1. I just tested it on a server with mysql 5.5 and now the check is ok. So the < character should be change to the > character.