diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2023-08-27 19:59:12 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-27 11:59:12 +0000 |
commit | 476b9d1589248b7bca6fb0f01825bd6955318cb3 (patch) | |
tree | 55edc01e26397829c48e734c3af993d98439e729 /routers/install | |
parent | e0a796a6410f7a540e2bc16ac5e386305c9321d1 (diff) | |
download | gitea-476b9d1589248b7bca6fb0f01825bd6955318cb3.tar.gz gitea-476b9d1589248b7bca6fb0f01825bd6955318cb3.zip |
Use docs.gitea.com instead of docs.gitea.io (#26739)
Diffstat (limited to 'routers/install')
-rw-r--r-- | routers/install/install.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/install/install.go b/routers/install/install.go index 66a9e1f002..6d60dfdca3 100644 --- a/routers/install/install.go +++ b/routers/install/install.go @@ -181,7 +181,7 @@ func checkDatabase(ctx *context.Context, form *forms.InstallForm) bool { if err = db.InitEngine(ctx); err != nil { if strings.Contains(err.Error(), `Unknown database type: sqlite3`) { ctx.Data["Err_DbType"] = true - ctx.RenderWithErr(ctx.Tr("install.sqlite3_not_available", "https://docs.gitea.io/en-us/install-from-binary/"), tplInstall, form) + ctx.RenderWithErr(ctx.Tr("install.sqlite3_not_available", "https://docs.gitea.com/installation/install-from-binary"), tplInstall, form) } else { ctx.Data["Err_DbSetting"] = true ctx.RenderWithErr(ctx.Tr("install.invalid_db_setting", err), tplInstall, form) |