From 8f33c6589d67493cad0c03aad7204a06420f8829 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sun, 6 Dec 2009 10:37:08 +0000 Subject: [PATCH] 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 --- app/controllers/issues_controller.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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