summaryrefslogtreecommitdiffstats
path: root/app/controllers
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-10-18 16:29:23 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-10-18 16:29:23 +0000
commit3c42abe07e12932a6e839ab3f635f86745cb39ed (patch)
tree38c7f2d1551b32a1ffd20488b53bc523b7ea22b3 /app/controllers
parent11cc0a48576bbbdf8c7d347409dce3555d05a92b (diff)
downloadredmine-3c42abe07e12932a6e839ab3f635f86745cb39ed.tar.gz
redmine-3c42abe07e12932a6e839ab3f635f86745cb39ed.zip
Added the ability to unassign issues with bulk edit.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@850 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/projects_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/projects_controller.rb b/app/controllers/projects_controller.rb
index f39c4536e..1fc7a82ff 100644
--- a/app/controllers/projects_controller.rb
+++ b/app/controllers/projects_controller.rb
@@ -350,7 +350,7 @@ class ProjectsController < ApplicationController
issues.each do |issue|
journal = issue.init_journal(User.current, params[:notes])
issue.priority = priority if priority
- issue.assigned_to = assigned_to if assigned_to
+ issue.assigned_to = assigned_to if assigned_to || params[:assigned_to_id] == 'none'
issue.category = category if category
issue.fixed_version = fixed_version if fixed_version
issue.start_date = params[:start_date] unless params[:start_date].blank?