##// END OF EJS Templates
Rails3: use String#html_safe for parent_project_select_tag() at ProjectsHelper....
Toshi MARUYAMA -
r6372:b8d16b9b8dd9
parent child
Show More
@@ -46,7 +46,7 module ProjectsHelper
46 options = ''
46 options = ''
47 options << "<option value=''></option>" if project.allowed_parents.include?(nil)
47 options << "<option value=''></option>" if project.allowed_parents.include?(nil)
48 options << project_tree_options_for_select(project.allowed_parents.compact, :selected => selected)
48 options << project_tree_options_for_select(project.allowed_parents.compact, :selected => selected)
49 content_tag('select', options, :name => 'project[parent_id]', :id => 'project_parent_id')
49 content_tag('select', options.html_safe, :name => 'project[parent_id]', :id => 'project_parent_id')
50 end
50 end
51
51
52 # Renders a tree of projects as a nested set of unordered lists
52 # Renders a tree of projects as a nested set of unordered lists
General Comments 0
You need to be logged in to leave comments. Login now