Browse Source

Mirror template bug fix

pull/500/head
Unknwon 10 years ago
parent
commit
977779cdcf
  1. 3
      routers/repo/commit.go

3
routers/repo/commit.go

@ -96,9 +96,10 @@ func SearchCommits(ctx *middleware.Context) {
commits, err := ctx.Repo.Commit.SearchCommits(keyword)
if err != nil {
ctx.Handle(500, "repo.SearchCommits(SearchCommits)", err)
ctx.Handle(500, "SearchCommits", err)
return
}
commits = models.ValidCommitsWithEmails(commits)
ctx.Data["Keyword"] = keyword
ctx.Data["Username"] = userName

Loading…
Cancel
Save