##// END OF EJS Templates
Removed deprecated Object#type in CustomFieldsController....
Jean-Philippe Lang -
r612:e4f2e0fd3788
parent child
Show More
@@ -25,7 +25,7 class CustomFieldsController < ApplicationController
25 end
25 end
26
26
27 def list
27 def list
28 @custom_fields_by_type = CustomField.find(:all).group_by {|f| f.type.to_s }
28 @custom_fields_by_type = CustomField.find(:all).group_by {|f| f.class.name }
29 @tab = params[:tab] || 'IssueCustomField'
29 @tab = params[:tab] || 'IssueCustomField'
30 render :action => "list", :layout => false if request.xhr?
30 render :action => "list", :layout => false if request.xhr?
31 end
31 end
General Comments 0
You need to be logged in to leave comments. Login now