mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-08-03 09:52:26 +02:00
Mirror fix on admin/orgs paging
This commit is contained in:
parent
79262173a6
commit
d78abd3561
4 changed files with 6 additions and 6 deletions
|
@ -24,14 +24,14 @@ const (
|
|||
)
|
||||
|
||||
func pagination(ctx *middleware.Context, count int64, pageNum int) int {
|
||||
p := com.StrTo(ctx.Query("p")).MustInt()
|
||||
p := ctx.QueryInt("p")
|
||||
if p < 1 {
|
||||
p = 1
|
||||
}
|
||||
curCount := int64((p-1)*pageNum + pageNum)
|
||||
if curCount > count {
|
||||
if curCount >= count {
|
||||
p = int(count) / pageNum
|
||||
} else if count > curCount {
|
||||
} else {
|
||||
ctx.Data["NextPageNum"] = p + 1
|
||||
}
|
||||
if p > 1 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue