summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2014-11-08 14:27:20 +0100
committerLukas Reschke <lukas@owncloud.com>2014-11-08 14:27:20 +0100
commitb0f57d6ef872319c63f0a360e45b04753dc50ec7 (patch)
tree424e77ac78b624777e84675acddcbc9ade647259 /core
parentfa3b6192ec19340a626712d67710d5a2df691d60 (diff)
downloadnextcloud-server-b0f57d6ef872319c63f0a360e45b04753dc50ec7.tar.gz
nextcloud-server-b0f57d6ef872319c63f0a360e45b04753dc50ec7.zip
Use proper array key
Fixes https://github.com/owncloud/core/issues/12047
Diffstat (limited to 'core')
-rw-r--r--core/setup/controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/setup/controller.php b/core/setup/controller.php
index 0722a2b13c3..39272120106 100644
--- a/core/setup/controller.php
+++ b/core/setup/controller.php
@@ -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,