check if $tables is an array
This commit is contained in:
parent
d09ec36751
commit
f0c0bd5251
|
@ -28,11 +28,13 @@ class InnoDB extends BasicEmitter implements \OC\RepairStep {
|
|||
}
|
||||
|
||||
$tables = $this->getAllMyIsamTables($connection);
|
||||
if (is_array($tables)) {
|
||||
foreach ($tables as $table) {
|
||||
$connection->exec("ALTER TABLE $table ENGINE=InnoDB;");
|
||||
$this->emit('\OC\Repair', 'info', array("Fixed $table"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param \Doctrine\DBAL\Connection $connection
|
||||
|
|
Loading…
Reference in New Issue