Fix PR template error
This commit is contained in:
parent
1ac8646845
commit
45fa822ac4
|
@ -334,13 +334,11 @@ func RepoAssignment(args ...bool) macaron.Handler {
|
||||||
if ctx.Repo.IsWriter() || (ctx.IsSigned && ctx.User.HasForkedRepo(ctx.Repo.Repository.ID)) {
|
if ctx.Repo.IsWriter() || (ctx.IsSigned && ctx.User.HasForkedRepo(ctx.Repo.Repository.ID)) {
|
||||||
// Pull request is allowed if this is a fork repository
|
// Pull request is allowed if this is a fork repository
|
||||||
// and base repository accepts pull requests.
|
// and base repository accepts pull requests.
|
||||||
if repo.BaseRepo != nil {
|
if repo.BaseRepo != nil && repo.BaseRepo.AllowsPulls() {
|
||||||
if repo.BaseRepo.AllowsPulls() {
|
ctx.Data["BaseRepo"] = repo.BaseRepo
|
||||||
ctx.Data["BaseRepo"] = repo.BaseRepo
|
ctx.Repo.PullRequest.BaseRepo = repo.BaseRepo
|
||||||
ctx.Repo.PullRequest.BaseRepo = repo.BaseRepo
|
ctx.Repo.PullRequest.Allowed = true
|
||||||
ctx.Repo.PullRequest.Allowed = true
|
ctx.Repo.PullRequest.HeadInfo = ctx.Repo.Owner.Name + ":" + ctx.Repo.BranchName
|
||||||
ctx.Repo.PullRequest.HeadInfo = ctx.Repo.Owner.Name + ":" + ctx.Repo.BranchName
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
// Or, this is repository accepts pull requests between branches.
|
// Or, this is repository accepts pull requests between branches.
|
||||||
if repo.AllowsPulls() {
|
if repo.AllowsPulls() {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user