diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-09-28 08:41:17 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-09-28 08:41:17 +0000 |
commit | 85711f1d5484ae9708dc4e92fdaf4eb499da8ede (patch) | |
tree | 20d05bf15633da56f16223ebe316f1d3509b7e5a /app/controllers | |
parent | 050d0d046a74ba13a233c6b4628763c4c08a5f05 (diff) | |
download | redmine-85711f1d5484ae9708dc4e92fdaf4eb499da8ede.tar.gz redmine-85711f1d5484ae9708dc4e92fdaf4eb499da8ede.zip |
Fixed: Status list on bulk edit form does not follow normal sequence (#1956).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1913 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/issues_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/issues_controller.rb b/app/controllers/issues_controller.rb index 04f78092b..156933d5d 100644 --- a/app/controllers/issues_controller.rb +++ b/app/controllers/issues_controller.rb @@ -253,7 +253,7 @@ class IssuesController < ApplicationController end # Find potential statuses the user could be allowed to switch issues to @available_statuses = Workflow.find(:all, :include => :new_status, - :conditions => {:role_id => current_role.id}).collect(&:new_status).compact.uniq + :conditions => {:role_id => current_role.id}).collect(&:new_status).compact.uniq.sort end def move |