mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Rename context.Query to context.Form (#16562)
This commit is contained in:
		| @@ -177,7 +177,7 @@ func genAPILinks(curURL *url.URL, total, pageSize, curPage int) []string { | ||||
|  | ||||
| // SetLinkHeader sets pagination link header by given total number and page size. | ||||
| func (ctx *APIContext) SetLinkHeader(total, pageSize int) { | ||||
| 	links := genAPILinks(ctx.Req.URL, total, pageSize, ctx.QueryInt("page")) | ||||
| 	links := genAPILinks(ctx.Req.URL, total, pageSize, ctx.FormInt("page")) | ||||
|  | ||||
| 	if len(links) > 0 { | ||||
| 		ctx.Header().Set("Link", strings.Join(links, ",")) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user