Use proper array key
Fixes https://github.com/owncloud/core/issues/12047
This commit is contained in:
parent
fa3b6192ec
commit
b0f57d6ef8
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ class Controller {
|
|||
return array(
|
||||
'hasSQLite' => isset($databases['sqlite']),
|
||||
'hasMySQL' => isset($databases['mysql']),
|
||||
'hasPostgreSQL' => isset($databases['postgre']),
|
||||
'hasPostgreSQL' => isset($databases['pgsql']),
|
||||
'hasOracle' => isset($databases['oci']),
|
||||
'hasMSSQL' => isset($databases['mssql']),
|
||||
'databases' => $databases,
|
||||
|
|
Loading…
Reference in a new issue