small fix generating errors:

in admin/mysqlperformance.php:

FIND:
$Lines = file($FilePath);

REPLACE WITH:
$Lines = @file($FilePath);



More...