Merge pull request #12499 from owncloud/disableMSSQL

Disable MSSQL and OCI for new CE installations
This commit is contained in:
Lukas Reschke 2014-11-28 18:38:34 +01:00
commit ebb243344a
2 changed files with 2 additions and 2 deletions

View File

@ -831,7 +831,7 @@ $CONFIG = array(
/** /**
* Database types that are supported for installation. (SQLite is available only in * 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: * Available:
* - sqlite (SQLite3) * - sqlite (SQLite3)

View File

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