diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-04-14 18:30:13 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-04-14 18:31:41 +0200 |
commit | 4976daca7a54cf78952b71d209ca0dee382a7ff1 (patch) | |
tree | 949543b2131b04c0176fda96705b1d651b74d301 /lib | |
parent | 30498fd6f8d80d8f020eea0a4b4d6d3680457dc2 (diff) | |
download | nextcloud-server-4976daca7a54cf78952b71d209ca0dee382a7ff1.tar.gz nextcloud-server-4976daca7a54cf78952b71d209ca0dee382a7ff1.zip |
Fix default database type string
Diffstat (limited to 'lib')
-rw-r--r-- | lib/db.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/db.php b/lib/db.php index d2552bff8f6..7d2b6331061 100644 --- a/lib/db.php +++ b/lib/db.php @@ -434,7 +434,7 @@ class OC_DB { self::connect(); // We need Database type and table prefix if(is_null(self::$type)){ - self::$type=OC_Config::getValue( "dbtype", "oc_" ); + self::$type=OC_Config::getValue( "dbtype", "sqlite" ); } $type = self::$type; if(is_null(self::$prefix)){ |