mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 06:24:11 +01:00 
			
		
		
		
	Fix XORM IN condition table name parse
This commit is contained in:
		
							parent
							
								
									78481f0e42
								
							
						
					
					
						commit
						762ab056a2
					
				@ -3,7 +3,7 @@ Gogs - Go Git Service [
 | 
			
		||||
 | 
			
		||||
##### Current version: 0.9.17
 | 
			
		||||
##### Current version: 0.9.18
 | 
			
		||||
 | 
			
		||||
| Web | UI  | Preview  |
 | 
			
		||||
|:-------------:|:-------:|:-------:|
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							@ -17,7 +17,7 @@ import (
 | 
			
		||||
	"github.com/gogits/gogs/modules/setting"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
const APP_VER = "0.9.17.0326"
 | 
			
		||||
const APP_VER = "0.9.18.0327"
 | 
			
		||||
 | 
			
		||||
func init() {
 | 
			
		||||
	runtime.GOMAXPROCS(runtime.NumCPU())
 | 
			
		||||
 | 
			
		||||
@ -512,7 +512,7 @@ func Issues(opts *IssuesOptions) ([]*Issue, error) {
 | 
			
		||||
		if len(opts.RepoIDs) == 0 {
 | 
			
		||||
			return make([]*Issue, 0), nil
 | 
			
		||||
		}
 | 
			
		||||
		sess.In("issue.repo_id", base.Int64sToStrings(opts.RepoIDs)).And("issue.is_closed=?", opts.IsClosed)
 | 
			
		||||
		sess.In("repo_id", base.Int64sToStrings(opts.RepoIDs)).And("issue.is_closed=?", opts.IsClosed)
 | 
			
		||||
	} else {
 | 
			
		||||
		sess.Where("issue.is_closed=?", opts.IsClosed)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
@ -268,7 +268,7 @@ func Issues(ctx *context.Context) {
 | 
			
		||||
		SortType:   sortType,
 | 
			
		||||
	})
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		ctx.Handle(500, "Issues: %v", err)
 | 
			
		||||
		ctx.Handle(500, "Issues", err)
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1 +1 @@
 | 
			
		||||
0.9.17.0326
 | 
			
		||||
0.9.18.0327
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user