[stable9] Fix conditional check in MySQL setup

Backport of #23760

Fix conditional check in MySQL setup.
This commit is contained in:
Daniel Hansson 2016-04-05 15:16:02 +02:00
parent 277c9f4a03
commit cff3122a37
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ class MySQL extends AbstractDatabase {
$query='select count(*) from information_schema.tables where table_schema=? AND table_name = ?';
$result = $connection->executeQuery($query, [$this->dbName, $this->tablePrefix.'users']);
$row = $result->fetch();
if(!$result or $row[0]==0) {
if (!$row or $row['count(*)'] === '0') {
\OC_DB::createDbFromStructure($this->dbDefinitionFile);
}
}