mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 22:28:05 +01:00 
			
		
		
		
	fix sql
This commit is contained in:
		
							parent
							
								
									a3683ca5d6
								
							
						
					
					
						commit
						8d73832bdf
					
				| @ -410,7 +410,7 @@ func Issues(uid, assigneeID, repoID, posterID, milestoneID int64, repoIDs []int6 | ||||
| 	if repoID > 0 { | ||||
| 		sess.Where("issue.repo_id=?", repoID).And("issue.is_closed=?", isClosed) | ||||
| 	} else if repoIDs != nil { | ||||
| 		sess.Where("issue.repo_id IN (?)", strings.Join(base.Int64sToStrings(repoIDs), ",")).And("issue.is_closed=?", isClosed) | ||||
| 		sess.Where("issue.repo_id IN ("+strings.Join(base.Int64sToStrings(repoIDs), ",")+")").And("issue.is_closed=?", isClosed) | ||||
| 	} else { | ||||
| 		sess.Where("issue.is_closed=?", isClosed) | ||||
| 	} | ||||
|  | ||||
| @ -224,10 +224,6 @@ func Issues(ctx *middleware.Context) { | ||||
| 	} | ||||
| 	ctx.Data["Repos"] = showRepos | ||||
| 
 | ||||
| 	if repoID > 0 { | ||||
| 		repoIDs = []int64{repoID} | ||||
| 	} | ||||
| 
 | ||||
| 	issueStats := models.GetUserIssueStats(repoID, ctxUser.Id, repoIDs, filterMode) | ||||
| 	issueStats.AllCount = int64(allCount) | ||||
| 
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user