Mirror updates

This commit is contained in:
Unknown
2014-03-23 12:16:17 -04:00
parent b31070faf5
commit f8cfb81fb0
10 changed files with 46 additions and 47 deletions

View File

@ -31,6 +31,10 @@ func Issues(ctx *middleware.Context, params martini.Params) {
return
}
if len(params["branchname"]) == 0 {
params["branchname"] = "master"
}
ctx.Data["Branchname"] = params["branchname"]
ctx.HTML(200, "repo/issues")
}