From 61b14f6391afa5848353f4ff5ace5f52443ecff7 2012-02-25 11:04:38 From: Jean-Philippe Lang Date: 2012-02-25 11:04:38 Subject: [PATCH] Use content_tag for empty option. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8993 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/controllers/versions_controller.rb b/app/controllers/versions_controller.rb index 7bcfcb3..d722534 100644 --- a/app/controllers/versions_controller.rb +++ b/app/controllers/versions_controller.rb @@ -108,7 +108,7 @@ class VersionsController < ApplicationController page << 'hideModal();' # IE doesn't support the replace_html rjs method for select box options page.replace "issue_fixed_version_id", - content_tag('select', '' + version_options_for_select(@project.shared_versions.open, @version), :id => 'issue_fixed_version_id', :name => 'issue[fixed_version_id]') + content_tag('select', content_tag('option') + version_options_for_select(@project.shared_versions.open, @version), :id => 'issue_fixed_version_id', :name => 'issue[fixed_version_id]') } end format.api do