[Pkg-owncloud-commits] [owncloud] 65/74: Disable MSSQL for new CE installations
David Prévot
taffit at moszumanska.debian.org
Tue Dec 2 22:04:40 UTC 2014
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository owncloud.
commit b122b285c9d075b2aff7f86a7b0a1a1fe158de07
Author: Lukas Reschke <lukas at owncloud.com>
Date: Fri Nov 28 16:08:38 2014 +0100
Disable MSSQL for new CE installations
Since automatic schema migrations are not yet possible let's disable this for now.
Conflicts:
lib/private/setup.php
---
lib/private/setup.php | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/lib/private/setup.php b/lib/private/setup.php
index 2d6cede..6fb5ac2 100644
--- a/lib/private/setup.php
+++ b/lib/private/setup.php
@@ -90,7 +90,9 @@ class OC_Setup {
'name' => 'MS SQL'
)
);
- $configuredDatabases = $this->config->getSystemValue('supportedDatabases', array('sqlite', 'mysql', 'pgsql', 'oci', 'mssql'));
+
+ $configuredDatabases = $this->config->getSystemValue('supportedDatabases',
+ array('sqlite', 'mysql', 'pgsql'));
if(!is_array($configuredDatabases)) {
throw new Exception('Supported databases are not properly configured.');
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list