tokarchuk/v1.17
Unknwon 9 years ago
parent 1b5e1bebc2
commit 00eb2b221f
  1. 2
      gogs.go
  2. 5
      routers/repo/issue.go
  3. 2
      templates/.VERSION

@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting" "github.com/gogits/gogs/modules/setting"
) )
const APP_VER = "0.6.24.1103 Beta" const APP_VER = "0.6.24.1104 Beta"
func init() { func init() {
runtime.GOMAXPROCS(runtime.NumCPU()) runtime.GOMAXPROCS(runtime.NumCPU())

@ -124,7 +124,8 @@ func Issues(ctx *middleware.Context) {
} else { } else {
total = int(issueStats.ClosedCount) total = int(issueStats.ClosedCount)
} }
ctx.Data["Page"] = paginater.New(total, setting.IssuePagingNum, page, 5) pager := paginater.New(total, setting.IssuePagingNum, page, 5)
ctx.Data["Page"] = pager
// Get issues. // Get issues.
issues, err := models.Issues(&models.IssuesOptions{ issues, err := models.Issues(&models.IssuesOptions{
@ -133,7 +134,7 @@ func Issues(ctx *middleware.Context) {
RepoID: repo.ID, RepoID: repo.ID,
PosterID: posterID, PosterID: posterID,
MilestoneID: milestoneID, MilestoneID: milestoneID,
Page: page, Page: pager.Current(),
IsClosed: isShowClosed, IsClosed: isShowClosed,
IsMention: filterMode == models.FM_MENTION, IsMention: filterMode == models.FM_MENTION,
IsPull: isPullList, IsPull: isPullList,

@ -1 +1 @@
0.6.24.1103 Beta 0.6.24.1104 Beta
Loading…
Cancel
Save