Disable OCI as it is unsupported by most CE apps

This commit is contained in:
Lukas Reschke 2014-11-28 16:23:03 +01:00
parent f3e75c085c
commit 9a8dc4a832
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ class OC_Setup {
)
);
$configuredDatabases = $this->config->getSystemValue('supportedDatabases',
array('sqlite', 'mysql', 'pgsql', 'oci'));
array('sqlite', 'mysql', 'pgsql'));
if(!is_array($configuredDatabases)) {
throw new Exception('Supported databases are not properly configured.');
}