From 2bd4035076dee5927d3f92fb7fcef3b75d1544ca Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 9 Oct 2012 11:17:10 +0200 Subject: [PATCH] $CONFIG_DBTYPE was never assigned but used in this function --- lib/db.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.39.5