From 5d5c4535cb971f14c2cbde655e7f09d4f6b62eb1 Mon Sep 17 00:00:00 2001 From: Unknown Date: Tue, 13 May 2014 14:49:20 -0400 Subject: [PATCH] Fix #181 --- models/issue.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/models/issue.go b/models/issue.go index 213fd1f2a..dad89f56c 100644 --- a/models/issue.go +++ b/models/issue.go @@ -10,6 +10,8 @@ import ( "strings" "time" + "github.com/go-xorm/xorm" + "github.com/gogits/gogs/modules/base" ) @@ -281,9 +283,10 @@ const ( func GetIssueStats(rid, uid int64, isShowClosed bool, filterMode int) *IssueStats { stats := &IssueStats{} issue := new(Issue) + tmpSess := &xorm.Session{} sess := orm.Where("repo_id=?", rid) - tmpSess := sess + *tmpSess = *sess stats.OpenCount, _ = tmpSess.And("is_closed=?", false).Count(issue) *tmpSess = *sess stats.ClosedCount, _ = tmpSess.And("is_closed=?", true).Count(issue)