From 28dc5bb5667c4d1839ad28b33b7145b145f30665 Mon Sep 17 00:00:00 2001 From: rugk Date: Sat, 6 Aug 2016 02:35:40 +0200 Subject: Replace gogs.io http links with https version (#3386) --- routers/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'routers/install.go') diff --git a/routers/install.go b/routers/install.go index 23fb0173..0af1f446 100644 --- a/routers/install.go +++ b/routers/install.go @@ -227,7 +227,7 @@ func InstallPost(ctx *context.Context, form auth.InstallForm) { if err := models.NewTestEngine(x); err != nil { if strings.Contains(err.Error(), `Unknown database type: sqlite3`) { ctx.Data["Err_DbType"] = true - ctx.RenderWithErr(ctx.Tr("install.sqlite3_not_available", "http://gogs.io/docs/installation/install_from_binary.html"), INSTALL, &form) + ctx.RenderWithErr(ctx.Tr("install.sqlite3_not_available", "https://gogs.io/docs/installation/install_from_binary.html"), INSTALL, &form) } else { ctx.Data["Err_DbSetting"] = true ctx.RenderWithErr(ctx.Tr("install.invalid_db_setting", err), INSTALL, &form) -- cgit v1.2.3