summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--routers/admin/notice.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/routers/admin/notice.go b/routers/admin/notice.go
index 164badda7b..9a121ecb27 100644
--- a/routers/admin/notice.go
+++ b/routers/admin/notice.go
@@ -24,14 +24,14 @@ func Notices(ctx *middleware.Context) {
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminNotices"] = true
- total := models.CountNotices()
+ total := models.CountNotices()
page := ctx.QueryInt("page")
if page <= 1 {
page = 1
}
ctx.Data["Page"] = paginater.New(int(total), setting.AdminNoticePagingNum, page, 5)
-
- notices, err := models.Notices(page, setting.AdminNoticePagingNum)
+
+ notices, err := models.Notices(page, setting.AdminNoticePagingNum)
if err != nil {
ctx.Handle(500, "Notices", err)
return