summaryrefslogtreecommitdiffstats
path: root/routers/install.go
diff options
context:
space:
mode:
authorrugk <rugk@posteo.de>2016-08-06 02:35:40 +0200
committer无闻 <u@gogs.io>2016-08-05 17:35:40 -0700
commit28dc5bb5667c4d1839ad28b33b7145b145f30665 (patch)
tree097db30afed96423be15322de1a742cbb8cb27cd /routers/install.go
parentcf6d321991735a2891e16066f74a75f51719e99e (diff)
downloadgitea-28dc5bb5667c4d1839ad28b33b7145b145f30665.tar.gz
gitea-28dc5bb5667c4d1839ad28b33b7145b145f30665.zip
Replace gogs.io http links with https version (#3386)
Diffstat (limited to 'routers/install.go')
-rw-r--r--routers/install.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/install.go b/routers/install.go
index 23fb01735a..0af1f446c0 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)