From: Jean-Philippe Lang Date: Sun, 13 May 2012 08:45:15 +0000 (+0000) Subject: Fixed that enumerations option tags are escaped. X-Git-Tag: 2.0.0~10 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=69e55fb1ef26c0744993e3f83e80ea987d9db5c9;p=redmine.git Fixed that enumerations option tags are escaped. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9681 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/enumerations/destroy.html.erb b/app/views/enumerations/destroy.html.erb index 02e66bd9f..3b47b40b2 100644 --- a/app/views/enumerations/destroy.html.erb +++ b/app/views/enumerations/destroy.html.erb @@ -4,7 +4,7 @@

<%= l(:text_enumeration_destroy_question, @enumeration.objects_count) %>

-<%= select_tag 'reassign_to_id', ("" + options_from_collection_for_select(@enumerations, 'id', 'name')) %>

+<%= select_tag 'reassign_to_id', (content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---") + options_from_collection_for_select(@enumerations, 'id', 'name')) %>

<%= submit_tag l(:button_apply) %> diff --git a/test/functional/enumerations_controller_test.rb b/test/functional/enumerations_controller_test.rb index 7378e6f46..b13fc86f7 100644 --- a/test/functional/enumerations_controller_test.rb +++ b/test/functional/enumerations_controller_test.rb @@ -105,6 +105,9 @@ class EnumerationsControllerTest < ActionController::TestCase assert_response :success assert_template 'destroy' assert_not_nil Enumeration.find_by_id(4) + assert_select 'select[name=reassign_to_id]' do + assert_select 'option[value=6]', :text => 'High' + end end def test_destroy_enumeration_in_use_with_reassignment