Merge pull request #12499 from owncloud/disableMSSQL
Disable MSSQL and OCI for new CE installations
This commit is contained in:
commit
ebb243344a
|
@ -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…
Reference in New Issue