summaryrefslogtreecommitdiffstats
path: root/routers/repo/watchers.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/repo/watchers.go')
-rw-r--r--routers/repo/watchers.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/routers/repo/watchers.go b/routers/repo/watchers.go
index 8765b18376..8626fa2371 100644
--- a/routers/repo/watchers.go
+++ b/routers/repo/watchers.go
@@ -19,21 +19,21 @@ const (
func Watchers(ctx *middleware.Context) {
ctx.Data["Title"] = ctx.Tr("repos.watches")
- page := ctx.ParamsInt(":index")
+ page := ctx.QueryInt("page")
if page <= 0 {
page = 1
}
ctx.Data["Page"] = paginater.New(ctx.Repo.Repository.NumWatches, models.ItemsPerPage, page, 5)
- watchers, err := ctx.Repo.Repository.GetWatchers(ctx.ParamsInt(":index"))
+ watchers, err := ctx.Repo.Repository.GetWatchers(ctx.QueryInt("page"))
if err != nil {
ctx.Handle(500, "GetWatchers", err)
return
}
- if (ctx.ParamsInt(":index")-1)*models.ItemsPerPage > ctx.Repo.Repository.NumWatches {
+ if (ctx.QueryInt("page")-1)*models.ItemsPerPage > ctx.Repo.Repository.NumWatches {
ctx.Handle(404, "ctx.Repo.Repository.NumWatches", nil)
return
}