From: Jean-Philippe Lang Date: Tue, 26 Jun 2012 16:54:30 +0000 (+0000) Subject: Fixed that root projects are escaped twice in the project drop down (#11217). X-Git-Tag: 2.1.0~409 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7f6ac407ef11b94a3e99e4a712320f3a6faa22ec;p=redmine.git Fixed that root projects are escaped twice in the project drop down (#11217). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9894 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 8c328326f..d32c86b75 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -253,7 +253,7 @@ module ApplicationHelper def project_tree_options_for_select(projects, options = {}) s = '' project_tree(projects) do |project, level| - name_prefix = (level > 0 ? (' ' * 2 * level + '» ').html_safe : '') + name_prefix = (level > 0 ? (' ' * 2 * level + '» ') : '').html_safe tag_options = {:value => project.id} if project == options[:selected] || (options[:selected].respond_to?(:include?) && options[:selected].include?(project)) tag_options[:selected] = 'selected' diff --git a/test/functional/welcome_controller_test.rb b/test/functional/welcome_controller_test.rb index af86f6638..a846d1aaf 100644 --- a/test/functional/welcome_controller_test.rb +++ b/test/functional/welcome_controller_test.rb @@ -96,6 +96,16 @@ class WelcomeControllerTest < ActionController::TestCase assert @controller.respond_to?(:call_hook) end + def test_project_jump_box_should_escape_names_once + Project.find(1).update_attribute :name, 'Foo & Bar' + @request.session[:user_id] = 2 + + get :index + assert_select "#header select" do + assert_select "option", :text => 'Foo & Bar' + end + end + context "test_api_offset_and_limit" do context "without params" do should "return 0, 25" do