diff options
author | Unknwon <u@gogs.io> | 2015-09-16 15:34:46 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-09-16 15:34:46 -0400 |
commit | 2729eb998c8f18c2445269009b18048e0b2f4742 (patch) | |
tree | abfbb572e6f5a5e6c536365ab02b80627fae0d00 /routers | |
parent | b003b187883ea50c10b709ca97c26ecf1d9631bb (diff) | |
download | gitea-2729eb998c8f18c2445269009b18048e0b2f4742.tar.gz gitea-2729eb998c8f18c2445269009b18048e0b2f4742.zip |
#1646 and other minor fixes
Diffstat (limited to 'routers')
-rw-r--r-- | routers/repo/setting.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/repo/setting.go b/routers/repo/setting.go index 1d88a128ec..a9930e7841 100644 --- a/routers/repo/setting.go +++ b/routers/repo/setting.go @@ -244,7 +244,7 @@ func Webhooks(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("repo.settings.hooks") ctx.Data["PageIsSettingsHooks"] = true ctx.Data["BaseLink"] = ctx.Repo.RepoLink - ctx.Data["Description"] = ctx.Tr("repo.settings.hooks_desc", "http://gogs.io/docs/features/webhook.html") + ctx.Data["Description"] = ctx.Tr("repo.settings.hooks_desc", "https://github.com/gogits/go-gogs-client/wiki/Repositories---Webhooks") ws, err := models.GetWebhooksByRepoId(ctx.Repo.Repository.ID) if err != nil { |