mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	Fix redirect bug when creating issue from a project (#23971)
Fix #23966
This commit is contained in:
		@@ -1154,8 +1154,8 @@ func NewIssuePost(ctx *context.Context) {
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	log.Trace("Issue created: %d/%d", repo.ID, issue.ID)
 | 
						log.Trace("Issue created: %d/%d", repo.ID, issue.ID)
 | 
				
			||||||
	if ctx.FormString("redirect_after_creation") == "project" {
 | 
						if ctx.FormString("redirect_after_creation") == "project" && projectID > 0 {
 | 
				
			||||||
		ctx.Redirect(ctx.Repo.RepoLink + "/projects/" + strconv.FormatInt(form.ProjectID, 10))
 | 
							ctx.Redirect(ctx.Repo.RepoLink + "/projects/" + strconv.FormatInt(projectID, 10))
 | 
				
			||||||
	} else {
 | 
						} else {
 | 
				
			||||||
		ctx.Redirect(issue.Link())
 | 
							ctx.Redirect(issue.Link())
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user