From: Jean-Philippe Lang Date: Sun, 6 Dec 2009 10:37:08 +0000 (+0000) Subject: Fixed: error when changing tracker on the new issue form (#4345). X-Git-Tag: 0.9.0~137 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8f33c6589d67493cad0c03aad7204a06420f8829;p=redmine.git Fixed: error when changing tracker on the new issue form (#4345). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3125 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/controllers/issues_controller.rb b/app/controllers/issues_controller.rb index 4ca7aa90f..c997da940 100644 --- a/app/controllers/issues_controller.rb +++ b/app/controllers/issues_controller.rb @@ -436,11 +436,11 @@ class IssuesController < ApplicationController end def update_form - if params[:id] - @issue = @project.issues.visible.find(params[:id]) - else + if params[:id].blank? @issue = Issue.new @issue.project = @project + else + @issue = @project.issues.visible.find(params[:id]) end @issue.attributes = params[:issue] @allowed_statuses = ([@issue.status] + @issue.status.find_new_statuses_allowed_to(User.current.roles_for_project(@project), @issue.tracker)).uniq