Fix default database type string
This commit is contained in:
parent
30498fd6f8
commit
4976daca7a
1 changed files with 1 additions and 1 deletions
|
@ -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)){
|
||||
|
|
Loading…
Reference in a new issue