fix install default db option
This commit is contained in:
parent
bdd92dc7d1
commit
009d692c7d
1 changed files with 3 additions and 3 deletions
|
@ -98,11 +98,11 @@ func Install(ctx *middleware.Context) {
|
|||
form.DbName = models.DbCfg.Name
|
||||
form.DbPath = models.DbCfg.Path
|
||||
|
||||
curDbOp := ""
|
||||
if models.EnableSQLite3 {
|
||||
curDbOp = "SQLite3" // Default when enabled.
|
||||
ctx.Data["CurDbOption"] = "SQLite3" // Default when enabled.
|
||||
} else {
|
||||
ctx.Data["CurDbOption"] = "MySQL"
|
||||
}
|
||||
ctx.Data["CurDbOption"] = curDbOp
|
||||
|
||||
// Application general settings
|
||||
form.AppName = setting.AppName
|
||||
|
|
Reference in a new issue