Merge pull request #12499 from owncloud/disableMSSQL

Disable MSSQL and OCI for new CE installations
remotes/origin/fix-10825
Lukas Reschke 10 years ago
commit ebb243344a
  1. 2
      config/config.sample.php
  2. 2
      lib/private/setup.php

@ -831,7 +831,7 @@ $CONFIG = array(
/**
* Database types that are supported for installation. (SQLite is available only in
* ownCloud Community Edition)
* ownCloud Community Edition, oci and mssql only for the Enterprise Edition)
*
* Available:
* - sqlite (SQLite3)

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

Loading…
Cancel
Save