aboutsummaryrefslogtreecommitdiff
path: root/routers/repo/setting.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/repo/setting.go')
-rw-r--r--routers/repo/setting.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/routers/repo/setting.go b/routers/repo/setting.go
index 015c42c1..6ccd058a 100644
--- a/routers/repo/setting.go
+++ b/routers/repo/setting.go
@@ -499,6 +499,7 @@ func SettingsGitHooks(ctx *context.Context) {
func SettingsGitHooksEdit(ctx *context.Context) {
ctx.Data["Title"] = ctx.Tr("repo.settings.githooks")
ctx.Data["PageIsSettingsGitHooks"] = true
+ ctx.Data["RequireSimpleMDE"] = true
name := ctx.Params(":name")
hook, err := ctx.Repo.GitRepo.GetHook(name)
@@ -530,7 +531,7 @@ func SettingsGitHooksEditPost(ctx *context.Context) {
ctx.Handle(500, "hook.Update", err)
return
}
- ctx.Redirect(ctx.Repo.RepoLink + "/settings/hooks/git")
+ ctx.Redirect(ctx.Data["Link"].(string))
}
func SettingsDeployKeys(ctx *context.Context) {