aboutsummaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-05-07 20:36:00 -0400
committerUnknown <joe2010xtmf@163.com>2014-05-07 20:36:00 -0400
commit495d939ca580825c4a91612e38107ecc4339598a (patch)
treec24702996f29f5e39a2c0e87433837d9b3fe26c0 /routers
parent7d89e765ab499bb861d83e5e2a3fb1d1ee11cd75 (diff)
downloadgitea-495d939ca580825c4a91612e38107ecc4339598a.tar.gz
gitea-495d939ca580825c4a91612e38107ecc4339598a.zip
Waiting for UI
Diffstat (limited to 'routers')
-rw-r--r--routers/repo/issue.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/repo/issue.go b/routers/repo/issue.go
index 31827f2d04..da34c03c25 100644
--- a/routers/repo/issue.go
+++ b/routers/repo/issue.go
@@ -66,7 +66,7 @@ func Issues(ctx *middleware.Context) {
}
// Get issue-user pairs.
- pairs, err := models.GetIssueUserPairs(ctx.Repo.Repository.Id, ctx.User.Id, isShowClosed)
+ pairs, err := models.GetIssueUserPairs(ctx.Repo.Repository.Id, posterId, isShowClosed)
if err != nil {
ctx.Handle(500, "issue.Issues(GetIssueUserPairs): %v", err)
return