Test failure (#23410).

git-svn-id: http://svn.redmine.org/redmine/trunk@15748 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2016-08-20 12:41:24 +00:00
parent 9ef42ce3d5
commit 0925ce756c
2 changed files with 9 additions and 3 deletions

View File

@@ -151,7 +151,13 @@ class IssuesController < ApplicationController
return
else
respond_to do |format|
format.html { render :action => 'new' }
format.html {
if @issue.project.nil?
render_error :status => 422
else
render :action => 'new'
end
}
format.api { render_validation_errors(@issue) }
end
end
@@ -484,7 +490,7 @@ class IssuesController < ApplicationController
render_error l(:error_no_default_issue_status)
return false
end
else
elsif request.get?
render_error :message => l(:error_no_projects_with_tracker_allowed_for_new_issue), :status => 403
return false
end