Use proper array key

Fixes https://github.com/owncloud/core/issues/12047
This commit is contained in:
Lukas Reschke 2014-11-08 14:27:20 +01:00
parent fa3b6192ec
commit b0f57d6ef8
1 changed files with 1 additions and 1 deletions

View File

@ -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,