##// END OF EJS Templates
Fixed: Status list on bulk edit form does not follow normal sequence (#1956)....
Jean-Philippe Lang -
r1911:85711f1d5484
parent child
Show More
@@ -253,7 +253,7 class IssuesController < ApplicationController
253 end
253 end
254 # Find potential statuses the user could be allowed to switch issues to
254 # Find potential statuses the user could be allowed to switch issues to
255 @available_statuses = Workflow.find(:all, :include => :new_status,
255 @available_statuses = Workflow.find(:all, :include => :new_status,
256 :conditions => {:role_id => current_role.id}).collect(&:new_status).compact.uniq
256 :conditions => {:role_id => current_role.id}).collect(&:new_status).compact.uniq.sort
257 end
257 end
258
258
259 def move
259 def move
General Comments 0
You need to be logged in to leave comments. Login now