diff options
author | Unknown <joe2010xtmf@163.com> | 2014-03-22 17:59:22 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-03-22 17:59:22 -0400 |
commit | 7356153ba3c19ff49f3ecfa28bac0b8bb38eccb9 (patch) | |
tree | d6cb7f9a7317eaddc981708e2a104020370e66d7 /routers/repo/issue.go | |
parent | cb52f6d07d62925a31185fedf591d0241ee2bf63 (diff) | |
download | gitea-7356153ba3c19ff49f3ecfa28bac0b8bb38eccb9.tar.gz gitea-7356153ba3c19ff49f3ecfa28bac0b8bb38eccb9.zip |
Batch updates
Diffstat (limited to 'routers/repo/issue.go')
-rw-r--r-- | routers/repo/issue.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 154e8308ab..4cc007e9ee 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -56,7 +56,7 @@ func CreateIssue(ctx *middleware.Context, params martini.Params, form auth.Creat form.IssueName, form.Labels, form.Content, false) if err == nil { log.Trace("%s Issue created: %d", form.RepoId, issue.Id) - ctx.Redirect(fmt.Sprintf("/%s/%s/issues/%d", params["username"], params["reponame"], issue.Index), 302) + ctx.Redirect(fmt.Sprintf("/%s/%s/issues/%d", params["username"], params["reponame"], issue.Index)) return } ctx.Handle(200, "issue.CreateIssue", err) |