Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2014-01-28 16:12:47 +01:00
commit ff7c297357

View File

@ -396,10 +396,9 @@ class PMA_StorageEngine_Innodb extends PMA_StorageEngine
*/
public function supportsFilePerTable()
{
$innodb_file_per_table = $GLOBALS['dbi']->fetchValue(
if ($GLOBALS['dbi']->fetchValue(
"SHOW GLOBAL VARIABLES LIKE 'innodb_file_per_table';", 0, 1
);
if ($innodb_file_per_table == 'ON') {
) == 'ON') {
return true;
} else {
return false;