diff options
author | Björn Schießle <schiessle@owncloud.com> | 2012-10-09 11:17:10 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2012-10-09 11:17:10 +0200 |
commit | 2bd4035076dee5927d3f92fb7fcef3b75d1544ca (patch) | |
tree | dff3cbf46287abeee21dd551902b3ebfb91c355b /lib/db.php | |
parent | 003241e8474da4239d69fc63b3e812b86d0e3667 (diff) | |
download | nextcloud-server-2bd4035076dee5927d3f92fb7fcef3b75d1544ca.tar.gz nextcloud-server-2bd4035076dee5927d3f92fb7fcef3b75d1544ca.zip |
$CONFIG_DBTYPE was never assigned but used in this function
Diffstat (limited to 'lib/db.php')
-rw-r--r-- | lib/db.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/db.php b/lib/db.php index 54d9a63fbce..f1597fb49fe 100644 --- a/lib/db.php +++ b/lib/db.php @@ -475,7 +475,8 @@ class OC_DB { */ public static function updateDbFromStructure($file) { $CONFIG_DBTABLEPREFIX = OC_Config::getValue( "dbtableprefix", "oc_" ); - + $CONFIG_DBTYPE = OC_Config::getValue( "dbtype", "sqlite" ); + self::connectScheme(); // read file |